summaryrefslogtreecommitdiff
path: root/git/refs/log.py
diff options
context:
space:
mode:
authorDominic <yobmod@gmail.com>2021-07-31 20:22:34 +0100
committerGitHub <noreply@github.com>2021-07-31 20:22:34 +0100
commit05825dcaaf6bf3de7d7e2bc595ad6dcb145f11e8 (patch)
tree9253532b6bb74372d2034c16ad58c6094f11fcc8 /git/refs/log.py
parent300330dfa2d2baece6d34b450523ac2a079c228b (diff)
parent2a350b57ce79a0e1b71623d1146c52918232e074 (diff)
downloadgitpython-05825dcaaf6bf3de7d7e2bc595ad6dcb145f11e8.tar.gz
Merge pull request #1308 from Yobmod/main
Add remaining types to symbolic.py
Diffstat (limited to 'git/refs/log.py')
-rw-r--r--git/refs/log.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/refs/log.py b/git/refs/log.py
index 643b4114..ddd78bc7 100644
--- a/git/refs/log.py
+++ b/git/refs/log.py
@@ -157,7 +157,7 @@ class RefLog(List[RefLogEntry], Serializable):
self._read_from_file()
# END handle filepath
- def _read_from_file(self):
+ def _read_from_file(self) -> None:
try:
fmap = file_contents_ro_filepath(
self._path, stream=True, allow_mmap=True)