Browse Source

Fix formatting

Jelmer Vernooij 3 weeks ago
parent
commit
6563339f4b
1 changed files with 6 additions and 1 deletions
  1. 6 1
      dulwich/object_store.py

+ 6 - 1
dulwich/object_store.py

@@ -1429,7 +1429,12 @@ class ObjectStoreGraphWalker:
 
     shallow: set[ObjectID]
 
-    def __init__(self, local_heads: Iterable[ObjectID], get_parents, shallow: Optional[set[ObjectID]] = None) -> None:
+    def __init__(
+        self,
+        local_heads: Iterable[ObjectID],
+        get_parents,
+        shallow: Optional[set[ObjectID]] = None,
+    ) -> None:
         """Create a new instance.
 
         Args: