From 1b618fd5d7c8b6c07f62ab81419fcb59639c4723 Mon Sep 17 00:00:00 2001 From: Reinier van der Leer Date: Thu, 24 Aug 2023 22:15:22 +0200 Subject: [PATCH] Fix mypy config --- mypy.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mypy.ini b/mypy.ini index 0b189bc7..6257f488 100644 --- a/mypy.ini +++ b/mypy.ini @@ -1,7 +1,9 @@ [mypy] follow_imports = skip check_untyped_defs = True +disallow_untyped_calls = True disallow_untyped_defs = True +files = autogpt/**/*.py,tests/**/*.py [mypy-tests.*] disallow_untyped_defs = False