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:
authordokazaki <dokazaki@users.noreply.github.com>2017-03-19 05:10:10 +0300
committerBrad Warren <bmw@users.noreply.github.com>2017-03-19 05:10:10 +0300
commit8011fb2879659008528e8b6ba5c04ac3de1e63a0 (patch)
tree3c701c7ec9ac00adff96e01e4086d85a999c4e0b /certbot-compatibility-test
parent679887f6913072ce3280bdf5862d5dabc5c039f8 (diff)
Add mypy (#4386)
* Initial configuration of mypy in box, correction of base mypy errors. * Move mypy install to toe * Add pylint comments for typing imports. * Remove typing module for Python 2.6 compatibility.
Diffstat (limited to 'certbot-compatibility-test')
-rw-r--r--certbot-compatibility-test/certbot_compatibility_test/interfaces.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/certbot-compatibility-test/certbot_compatibility_test/interfaces.py b/certbot-compatibility-test/certbot_compatibility_test/interfaces.py
index cd367d9af..7d3daee09 100644
--- a/certbot-compatibility-test/certbot_compatibility_test/interfaces.py
+++ b/certbot-compatibility-test/certbot_compatibility_test/interfaces.py
@@ -20,20 +20,20 @@ class IPluginProxy(zope.interface.Interface):
def __init__(args):
"""Initializes the plugin with the given command line args"""
- def cleanup_from_tests():
+ def cleanup_from_tests(): # type: ignore
"""Performs any necessary cleanup from running plugin tests.
This is guaranteed to be called before the program exits.
"""
- def has_more_configs():
+ def has_more_configs(): # type: ignore
"""Returns True if there are more configs to test"""
- def load_config():
+ def load_config(): # type: ignore
"""Loads the next config and returns its name"""
- def get_testable_domain_names():
+ def get_testable_domain_names(): # type: ignore
"""Returns the domain names that can be used in testing"""
@@ -44,7 +44,7 @@ class IAuthenticatorProxy(IPluginProxy, certbot.interfaces.IAuthenticator):
class IInstallerProxy(IPluginProxy, certbot.interfaces.IInstaller):
"""Wraps a Certbot installer"""
- def get_all_names_answer():
+ def get_all_names_answer(): # type: ignore
"""Returns all names that should be found by the installer"""