From 7af5259159fc2d3e4bde08db2a621a2ccf108cf4 Mon Sep 17 00:00:00 2001 From: hauntsaninja Date: Tue, 27 Sep 2022 13:52:48 -0700 Subject: [PATCH] Explicitly allow implicit optionals Keeps things working when you upgrade mypy versions. The other way of solving this problem is in #208 --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 433824a..1d077d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -23,3 +23,4 @@ warn_unused_configs = True warn_unreachable = True strict_equality = True +no_implicit_optional = False