summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-09-24 03:52:16 +0100
committerGitHub <noreply@github.com>2021-09-24 03:52:16 +0100
commit1746b971387eccfc6fb4e34d3c334079bbb14b2e (patch)
treecd6d4a755c41c203b6d1c14996d0025318579efc /git/repo/base.py
parent2d15c5a601e698e8f7859e821950cad0701b756d (diff)
parent5f4b4dbff46fae4c899f5573aea5a7266a41eeeb (diff)
downloadgitpython-1746b971387eccfc6fb4e34d3c334079bbb14b2e.tar.gz
Merge pull request #1346 from rra/type-fixes
Fix typing issues with delete_head and Remote.add
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/base.py b/git/repo/base.py
index e308fd8a..7713c915 100644
--- a/git/repo/base.py
+++ b/git/repo/base.py
@@ -429,7 +429,7 @@ class Repo(object):
:return: newly created Head Reference"""
return Head.create(self, path, commit, logmsg, force)
- def delete_head(self, *heads: 'Head', **kwargs: Any) -> None:
+ def delete_head(self, *heads: 'Union[str, Head]', **kwargs: Any) -> None:
"""Delete the given heads
:param kwargs: Additional keyword arguments to be passed to git-branch"""