From 2464c635514c8bc608d458719be7b296869ca03b Mon Sep 17 00:00:00 2001 From: hyugogirubato <65763543+hyugogirubato@users.noreply.github.com> Date: Mon, 8 Jul 2024 19:19:45 +0200 Subject: [PATCH] Fix arg info doc --- keydive/cdm.py | 3 +++ 1 file changed, 3 insertions(+) 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():