Fix arg info doc
This commit is contained in:
parent
be482c08d8
commit
2464c63551
|
@ -85,6 +85,9 @@ class Cdm:
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
data (Union[Path, bytes]): The challenge data as a file path or bytes.
|
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 isinstance(data, Path):
|
||||||
if not data.is_file():
|
if not data.is_file():
|
||||||
|
|
Loading…
Reference in New Issue