Browse Source

Fix typing

Jelmer Vernooij 2 months ago
parent
commit
f15b3715fa
1 changed files with 3 additions and 1 deletions
  1. 3 1
      dulwich/worktree.py

+ 3 - 1
dulwich/worktree.py

@@ -184,7 +184,9 @@ class WorkTreeContainer:
             exist_ok=exist_ok,
         )
 
-    def remove(self, path: Union[str, bytes, os.PathLike[str]], force: bool = False) -> None:
+    def remove(
+        self, path: Union[str, bytes, os.PathLike[str]], force: bool = False
+    ) -> None:
         """Remove a worktree.
 
         Args: