commit d227d7bc829be98150e538c2fd68316deed92e8d from: Jelmer Vernooij via: GitHub date: Wed May 03 23:50:53 2023 UTC Merge pull request #1172 from jelmer/init-files-non-kwargs For the moment, allow non-kwargs to _init_files commit - d1a34a7491eff36f22ef9de1db61207c18ab954e commit + d227d7bc829be98150e538c2fd68316deed92e8d blob - d24f733c1d138e2d160301093c4e1c7931d4ae97 blob + 55a4dba0a0df63fa30b8b85fd89042e9da5c9511 --- dulwich/repo.py +++ 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