diff options
author | Patrick Gerard <info@content-baer.de> | 2022-08-20 12:37:48 +0100 |
---|---|---|
committer | Patrick Gerard <info@content-baer.de> | 2022-08-20 12:49:16 +0100 |
commit | 7dda25eafa80fc6cb2dd0a21f992205119270007 (patch) | |
tree | b73f1a35038897adb82f7861540e6e52f9eb6391 /git/repo | |
parent | 6aa7fc525c81681bd7fd42dd1c025cbad92e34d7 (diff) | |
download | gitpython-7dda25eafa80fc6cb2dd0a21f992205119270007.tar.gz |
docs: add typerror exception to active_branch method
docs: add typerror exception to active_branch method
fix: sphinx syntax
add author
Diffstat (limited to 'git/repo')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 5a85cc4e..a1be5ff9 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -858,6 +858,8 @@ class Repo(object): @property def active_branch(self) -> Head: """The name of the currently active branch. + + :raises TypeError: If HEAD is detached :return: Head to the active branch""" # reveal_type(self.head.reference) # => Reference return self.head.reference |