Fix mistaken return type

This return value is not used anywhere (clearly).
This commit is contained in:
Hugo Osvaldo Barrera 2022-11-17 22:21:25 +01:00 committed by Hugo
parent 3067b32de5
commit 63ba948241

View file

@ -106,7 +106,7 @@ def get_storage_init_args(cls, stop_at=object):
return all, required
def checkdir(path: str, create: bool = False, mode: int = 0o750) -> bool:
def checkdir(path: str, create: bool = False, mode: int = 0o750) -> None:
"""Check whether ``path`` is a directory.
:param create: Whether to create the directory (and all parent directories)