2
0
Эх сурвалжийг харах

Merge pull request #1172 from jelmer/init-files-non-kwargs

For the moment, allow non-kwargs to _init_files
Jelmer Vernooij 1 жил өмнө
parent
commit
d227d7bc82
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -335,7 +335,7 @@ class BaseRepo:
         """
         raise NotImplementedError(self._determine_symlinks)
 
-    def _init_files(self, *, bare: bool, symlinks: Optional[bool] = None) -> None:
+    def _init_files(self, bare: bool, symlinks: Optional[bool] = None) -> None:
         """Initialize a default set of named files."""
         from .config import ConfigFile