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/util.py | |
parent | 6470ad4a413fb7fbd9f2d3b9da1720c13ffc92bb (diff) | |
download | gitpython-481f672baab666d6e2f81e9288a5f3c42c884a8e.tar.gz |
Add __future__.annotations to repo/base.py
Diffstat (limited to 'git/util.py')
-rw-r--r-- | git/util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/util.py b/git/util.py index c20be6eb..4f82219e 100644 --- a/git/util.py +++ b/git/util.py @@ -70,7 +70,7 @@ from gitdb.util import ( # NOQA @IgnorePep8 # Most of these are unused here, but are for use by git-python modules so these # don't see gitdb all the time. Flake of course doesn't like it. __all__ = ["stream_copy", "join_path", "to_native_path_linux", - "join_path_native", "Stats", "IndexFileSHA1Writer", "Iterable", "IterableList", + "join_path_native", "Stats", "IndexFileSHA1Writer", "IterableObj", "IterableList", "BlockingLockFile", "LockFile", 'Actor', 'get_user_id', 'assure_directory_exists', 'RemoteProgress', 'CallableRemoteProgress', 'rmtree', 'unbare_repo', 'HIDE_WINDOWS_KNOWN_ERRORS'] |