diff options
author | Yobmod <yobmod@gmail.com> | 2021-07-01 10:35:11 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-07-01 10:35:11 +0100 |
commit | 02b8ef0f163ca353e27f6b4a8c2120444739fde5 (patch) | |
tree | 0c8bad344c8111c0081ba70ec2688318abd795dd /git/cmd.py | |
parent | 8fd5414697724feff782e952a42ca5d9651418bc (diff) | |
download | gitpython-02b8ef0f163ca353e27f6b4a8c2120444739fde5.tar.gz |
Add missed types to Commit, uncomment to_native_path_linux()
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -342,11 +342,11 @@ class Git(LazyMixin): @overload @classmethod - def polish_url(cls, url: PathLike, is_cygwin: Union[None, bool] = None) -> str: + def polish_url(cls, url: str, is_cygwin: Union[None, bool] = None) -> str: ... @classmethod - def polish_url(cls, url: PathLike, is_cygwin: Union[None, bool] = None) -> PathLike: + def polish_url(cls, url: str, is_cygwin: Union[None, bool] = None) -> PathLike: if is_cygwin is None: is_cygwin = cls.is_cygwin() |