Skip to content

Commit 63ba948

Browse files
committed
Fix mistaken return type
This return value is not used anywhere (clearly).
1 parent 3067b32 commit 63ba948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vdirsyncer/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ class can take, and ``required`` is the subset of arguments the class
106106
return all, required
107107

108108

109-
def checkdir(path: str, create: bool = False, mode: int = 0o750) -> bool:
109+
def checkdir(path: str, create: bool = False, mode: int = 0o750) -> None:
110110
"""Check whether ``path`` is a directory.
111111
112112
:param create: Whether to create the directory (and all parent directories)

0 commit comments

Comments
 (0)