From 45700b139dc2f44d86c1e5051f18222823ac8b65 Mon Sep 17 00:00:00 2001 From: Jakub Stasiak Date: Thu, 12 Dec 2019 02:26:29 +0100 Subject: [PATCH] Disallow untyped functions The whole codebase is typed now, this will help keeping it this way to make development nicer. --- mypy.ini | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mypy.ini b/mypy.ini index 3ee84ca..f83503c 100644 --- a/mypy.ini +++ b/mypy.ini @@ -3,5 +3,4 @@ ignore_missing_imports = true follow_imports = error warn_no_return = true warn_redundant_casts = true -# TODO: disallow untyped defs once we have full type hint coverage -disallow_untyped_defs = false +disallow_untyped_defs = true