Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordschlessman <36820111+dschlessman@users.noreply.github.com>2018-05-15 20:40:32 +0300
committerBrad Warren <bmw@users.noreply.github.com>2018-05-15 20:40:32 +0300
commit9bd5b3dda2ca606614892cb178feeab8efe9a1f9 (patch)
treed6976164fed2e0805290bebbd7372982b90f4798 /mypy.ini
parent307f45f88f09872e5e9f5c1e7f2bae4361a3096d (diff)
Issue 5951/check untyped defs apache (#5989)
* resolved mypy untyped defs in parser.py * resolved mypy untyped defs in obj.py * removed unused imports * resolved mypy untyped defs in http_01.py * resolved mypy untyped defs in tls_sni_01.py * resolved mypy untyped defs in configurator.py * address mypy too-many-arguments error in override_centos.py * resolved mypy untyped defs in http_01_test.py * removed unused 'conf' argument that was causing mypy method assignment error * address mypy error where same variable reassigned to different type * address pylint and coverage issues * one character space change for formatting * fix required acme version for certbot-apache
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini3
1 files changed, 3 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index 9709fa5ed..7e08a1f99 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -5,6 +5,9 @@ ignore_missing_imports = True
[mypy-acme.*]
check_untyped_defs = True
+[mypy-certbot_apache.*]
+check_untyped_defs = True
+
[mypy-certbot_dns_dnsimple.*]
check_untyped_defs = True