From 568226c6eb080a3879359b7954dae663ea4849b9 Mon Sep 17 00:00:00 2001 From: Nicola Soranzo Date: Fri, 7 Jul 2023 15:18:20 +0100 Subject: [PATCH] Clean up mypy configuration --- setup.cfg | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.cfg b/setup.cfg index e4481b9fe..e1d067e8e 100644 --- a/setup.cfg +++ b/setup.cfg @@ -46,14 +46,13 @@ version = attr: bioblend.__version__ [mypy] check_untyped_defs = True -disallow_incomplete_defs = True disallow_subclassing_any = True disallow_untyped_calls = True disallow_untyped_decorators = True disallow_untyped_defs = True ignore_missing_imports = True -no_implicit_optional = True -no_implicit_reexport = True +implicit_optional = False +implicit_reexport = False pretty = True show_error_codes = True strict_equality = True