commit 975033fde22eadd69a78dc8d94e3b993b5cacdef from: Jelmer Vernooij date: Wed May 03 23:29:21 2023 UTC For the moment, allow passing non-kwargs to Repo._init_files commit - d1a34a7491eff36f22ef9de1db61207c18ab954e commit + 975033fde22eadd69a78dc8d94e3b993b5cacdef 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