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:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2021-10-25 01:43:21 +0300
committerGitHub <noreply@github.com>2021-10-25 01:43:21 +0300
commita0f22d21cec0b8ab29eadd9285bd876205df24c7 (patch)
treec51b4acd777db8e4d843ffe9e28e818197f5b97e /certbot-apache
parent94af2357130474199d9bd348a8be57a326d17509 (diff)
Add type annotations to the `acme` project (#9036)
* Start more types * Second run * Work in progress * Types in all acme module * Various fixes * Various fixes * Final fixes * Disallow untyped defs for acme project * Fix coverage * Remote unecessary type ignore * Use Mapping instead of Dict as input whenever it is possible * Update acme/acme/client.py Co-authored-by: Brad Warren <bmw@users.noreply.github.com> * Update acme/acme/client.py Co-authored-by: alexzorin <alex@zor.io> * Various fixes * Fix code * Fix code * Update acme/acme/client.py Co-authored-by: Brad Warren <bmw@users.noreply.github.com> * Update acme/acme/challenges.py Co-authored-by: Brad Warren <bmw@users.noreply.github.com> * Update acme/acme/client.py Co-authored-by: Brad Warren <bmw@users.noreply.github.com> * Fix deactivate_registration and simplify signature of update_registration * Do not leak personal data during account deactivation * Clean more Dicts * New fix to not leak contact field in the account deactivation payload. * Add ignore for python 3.6 type check * Revert "Add ignore for python 3.6 type check" This reverts commit da7338137b798e3ace34de15ed12f76ec3cf3888. * Let's find a smarter way than "type: ignore" * Update certbot/certbot/_internal/account.py Co-authored-by: alexzorin <alex@zor.io> * Fix an annotation Co-authored-by: Brad Warren <bmw@users.noreply.github.com> Co-authored-by: alexzorin <alex@zor.io>
Diffstat (limited to 'certbot-apache')
-rw-r--r--certbot-apache/certbot_apache/_internal/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-apache/certbot_apache/_internal/parser.py b/certbot-apache/certbot_apache/_internal/parser.py
index 3c705e066..773f5f1e4 100644
--- a/certbot-apache/certbot_apache/_internal/parser.py
+++ b/certbot-apache/certbot_apache/_internal/parser.py
@@ -15,7 +15,7 @@ from certbot_apache._internal import constants
try:
from augeas import Augeas
except ImportError: # pragma: no cover
- Augeas = None # type: ignore
+ Augeas = None
logger = logging.getLogger(__name__)