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:
Diffstat (limited to 'acme/acme/mixins.py')
-rw-r--r--acme/acme/mixins.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/acme/acme/mixins.py b/acme/acme/mixins.py
index e6e678d60..4c52957a5 100644
--- a/acme/acme/mixins.py
+++ b/acme/acme/mixins.py
@@ -1,6 +1,10 @@
"""Useful mixins for Challenge and Resource objects"""
from typing import Any
from typing import Dict
+import warnings
+
+warnings.warn(f'The module {__name__} is deprecated and will be removed in a future release',
+ DeprecationWarning, stacklevel=2)
class VersionedLEACMEMixin: