diff options
author | Yobmod <yobmod@gmail.com> | 2021-08-02 22:18:28 +0100 |
---|---|---|
committer | Yobmod <yobmod@gmail.com> | 2021-08-02 22:18:28 +0100 |
commit | a3f5b1308f3340375832f1f2254b41c1ecbbc17e (patch) | |
tree | 477c247583d29fa858e9616575454a7e27a559b3 /git | |
parent | 94ae0c5839cf8de3b67c8dfd449ad9cef696aefb (diff) | |
download | gitpython-a3f5b1308f3340375832f1f2254b41c1ecbbc17e.tar.gz |
Test Dataclass in repo.base.blame() 2
Diffstat (limited to 'git')
-rw-r--r-- | git/repo/base.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index bedd6a08..a9d2e5be 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -42,10 +42,10 @@ import gitdb from git.types import TBD, PathLike, Lit_config_levels, Commit_ish, Tree_ish, assert_never from typing import (Any, BinaryIO, Callable, Dict, Iterator, List, Mapping, Optional, Sequence, - TextIO, Tuple, Type, TypedDict, Union, + TextIO, Tuple, Type, Union, NamedTuple, cast, TYPE_CHECKING) -from git.types import ConfigLevels_Tup +from git.types import ConfigLevels_Tup, TypedDict if TYPE_CHECKING: from git.util import IterableList |