diff --git a/keydive/cdm.py b/keydive/cdm.py index b50c5db..511b491 100644 --- a/keydive/cdm.py +++ b/keydive/cdm.py @@ -85,6 +85,9 @@ class Cdm: Args: data (Union[Path, bytes]): The challenge data as a file path or bytes. + + Raises: + FileNotFoundError: If the provided file path does not exist. """ if isinstance(data, Path): if not data.is_file():