Skip to content

Commit 493832a

Browse files
committed
Fix typing
1 parent 48c4226 commit 493832a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

dulwich/worktree.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,9 @@ def add(
184184
exist_ok=exist_ok,
185185
)
186186

187-
def remove(self, path: Union[str, bytes, os.PathLike[str]], force: bool = False) -> None:
187+
def remove(
188+
self, path: Union[str, bytes, os.PathLike[str]], force: bool = False
189+
) -> None:
188190
"""Remove a worktree.
189191
190192
Args:

0 commit comments

Comments
 (0)