mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +00:00
Fix mistaken return type
This return value is not used anywhere (clearly).
This commit is contained in:
parent
3067b32de5
commit
63ba948241
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue