From 2a421c5e6321bd0a8814c359d98c8955cd079399 Mon Sep 17 00:00:00 2001 From: Nils Homer Date: Wed, 29 Mar 2023 14:40:46 -0700 Subject: [PATCH] Fix warning in mypy about silently following imports --- ci/mypy.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/mypy.ini b/ci/mypy.ini index 2a03cd1..ed67815 100644 --- a/ci/mypy.ini +++ b/ci/mypy.ini @@ -2,5 +2,5 @@ strict_optional = False ignore_missing_imports = True disallow_untyped_decorators = False -follow_imports = "silent" +follow_imports = silent disallow_untyped_defs = True