From ce06e1e71172b22bcbb28bec28ab8af3b6e76a74 Mon Sep 17 00:00:00 2001 From: Mark Kuhn Date: Wed, 4 Jan 2023 14:19:47 -0500 Subject: [PATCH] disable implicit optional for mypy --- 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