diff options
author | Yobmod <yobmod@gmail.com> | 2021-08-02 17:56:06 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-08-02 17:56:06 +0100 |
commit | 481f672baab666d6e2f81e9288a5f3c42c884a8e (patch) | |
tree | c88f064fcdfa463c96ebdd0e0d694294b1cfe393 /git/repo/__init__.py | |
parent | 6470ad4a413fb7fbd9f2d3b9da1720c13ffc92bb (diff) | |
download | gitpython-481f672baab666d6e2f81e9288a5f3c42c884a8e.tar.gz |
Add __future__.annotations to repo/base.py
Diffstat (limited to 'git/repo/__init__.py')
-rw-r--r-- | git/repo/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/repo/__init__.py b/git/repo/__init__.py index 712df60d..23c18db8 100644 --- a/git/repo/__init__.py +++ b/git/repo/__init__.py @@ -1,3 +1,3 @@ """Initialize the Repo package""" # flake8: noqa -from .base import * +from .base import Repo as Repo |