From 168bc3dc494c75ed540b2c1eb3b5306b682481bb Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 29 Nov 2018 11:09:04 +0100 Subject: [PATCH] Be stricter in mypy.ini --- mypy.ini | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mypy.ini b/mypy.ini index 94d5dff40..84a6fb239 100644 --- a/mypy.ini +++ b/mypy.ini @@ -52,3 +52,8 @@ disallow_subclassing_any = False [mypy-qutebrowser.browser.browsertab] disallow_untyped_defs = True +disallow_incomplete_defs = True + +[mypy-qutebrowser.misc.objects] +disallow_untyped_defs = True +disallow_incomplete_defs = True