From 6fb026ae6add8eaabe9826c246c0dd4c3ecf7689 Mon Sep 17 00:00:00 2001 From: Dmitry Figol Date: Wed, 16 May 2018 18:20:20 -0400 Subject: [PATCH] Reenabling pylint and adding nginx mypy back --- certbot/auth_handler.py | 1 + mypy.ini | 3 +++ 2 files changed, 4 insertions(+) diff --git a/certbot/auth_handler.py b/certbot/auth_handler.py index c9582107d..e7d658b25 100644 --- a/certbot/auth_handler.py +++ b/certbot/auth_handler.py @@ -10,6 +10,7 @@ from acme import challenges from acme import messages # pylint: disable=unused-import, no-name-in-module from acme.magic_typing import DefaultDict, Dict, List, Set, Collection +# pylint: enable=unused-import, no-name-in-module from certbot import achallenges from certbot import errors from certbot import error_handler diff --git a/mypy.ini b/mypy.ini index eca549699..327361c93 100644 --- a/mypy.ini +++ b/mypy.ini @@ -37,3 +37,6 @@ check_untyped_defs = True [mypy-certbot_dns_digitalocean.*] check_untyped_defs = True + +[mypy-certbot_nginx.*] +check_untyped_defs = True