From a78d1b9ef3a9926b0bf1738754bb30df5f329a0f Mon Sep 17 00:00:00 2001 From: Mark Kuhn Date: Wed, 4 Jan 2023 14:48:21 -0500 Subject: [PATCH] disable implicit optional for mypy (#97) --- mypy.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mypy.ini b/mypy.ini index a4b98cc..db30524 100644 --- a/mypy.ini +++ b/mypy.ini @@ -13,4 +13,5 @@ warn_unused_ignores = False warn_return_any = True strict_equality = True - ignore_missing_imports = True \ No newline at end of file + ignore_missing_imports = True + no_implicit_optional = False \ No newline at end of file