From e3f420094a400bd5e496342ff037089c1f222235 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Sun, 13 Oct 2024 11:09:47 +1100 Subject: [PATCH] Do not allow untyped functions --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index c55be7693..04f127762 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -160,6 +160,7 @@ testpaths = [ python_version = "3.9" pretty = true disallow_any_generics = true +disallow_untyped_defs = true enable_error_code = "ignore-without-code" extra_checks = true follow_imports = "silent"