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 /pyproject.toml | |
parent | 6470ad4a413fb7fbd9f2d3b9da1720c13ffc92bb (diff) | |
download | gitpython-481f672baab666d6e2f81e9288a5f3c42c884a8e.tar.gz |
Add __future__.annotations to repo/base.py
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 434880c7..102b6fdc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,10 +22,11 @@ filterwarnings = 'ignore::DeprecationWarning' disallow_untyped_defs = true no_implicit_optional = true warn_redundant_casts = true -implicit_reexport = true # warn_unused_ignores = true warn_unreachable = true show_error_codes = true +implicit_reexport = true +# strict = true # TODO: remove when 'gitdb' is fully annotated [[tool.mypy.overrides]] |