diff options
author | Robert Westman <robert@byteflux.io> | 2021-06-03 16:45:03 +0200 |
---|---|---|
committer | Robert Westman <robert@byteflux.io> | 2021-06-03 16:45:03 +0200 |
commit | 7ca97dcef3131a11dd5ef41d674bb6bd36608608 (patch) | |
tree | f8404758068fb640f64a4fa8158272c07fc716d9 /git/repo/base.py | |
parent | 702bdf105205ca845a50b16d6703828d18e93003 (diff) | |
download | gitpython-7ca97dcef3131a11dd5ef41d674bb6bd36608608.tar.gz |
Removes PathLike type requirement for full_tag creation
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 53698592..55682411 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -406,7 +406,7 @@ class Repo(object): return TagReference(self, full_path) @staticmethod - def _to_full_tag_path(path: PathLike): + def _to_full_tag_path(path): if path.startswith(TagReference._common_path_default + '/'): return path if path.startswith(TagReference._common_default + '/'): |