diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-06 15:40:06 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-06 15:40:06 +0100 |
commit | deafa6a0ab837dffb8f78177f7c22d21ac65bf62 (patch) | |
tree | 707d94e2680c4d3fa75a2677f02f8285d6780130 /git/repo/base.py | |
parent | 278a3713a0a560cbc5b1515c86f8852cd3119e6b (diff) | |
download | gitpython-deafa6a0ab837dffb8f78177f7c22d21ac65bf62.tar.gz |
Fix for mrepo2
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index ea86139b..a6f91aee 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -1016,7 +1016,7 @@ class Repo(object): @classmethod def _clone(cls, git: 'Git', url: PathLike, path: PathLike, odb_default_type: Type[GitCmdObjectDB], - progress: Union['RemoteProgress', 'UpdateProgress', Callable[..., 'RemoteProgress'], None], + progress: Union['RemoteProgress', 'UpdateProgress', Callable[..., 'RemoteProgress'], None] = None, multi_options: Optional[List[str]] = None, **kwargs: Any ) -> 'Repo': odbt = kwargs.pop('odbt', odb_default_type) |