summaryrefslogtreecommitdiff
path: root/src/mailman/utilities
diff options
context:
space:
mode:
authorBarry Warsaw2016-01-03 21:59:35 -0500
committerBarry Warsaw2016-01-03 21:59:35 -0500
commitff31bf58804fc984c694f6acfaa302042bc85d89 (patch)
tree5bc6a153bd0604364b931c8c0c70c10faea002c9 /src/mailman/utilities
parentf390e08c31477c476e1312d03771b68e22b42675 (diff)
downloadmailman-ff31bf58804fc984c694f6acfaa302042bc85d89.tar.gz
mailman-ff31bf58804fc984c694f6acfaa302042bc85d89.tar.zst
mailman-ff31bf58804fc984c694f6acfaa302042bc85d89.zip
Diffstat (limited to 'src/mailman/utilities')
-rw-r--r--src/mailman/utilities/uid.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mailman/utilities/uid.py b/src/mailman/utilities/uid.py
index d2747df9d..e49b3d8dd 100644
--- a/src/mailman/utilities/uid.py
+++ b/src/mailman/utilities/uid.py
@@ -89,7 +89,7 @@ class _PredictableIDGenerator:
The type of the returned id is intended to be the type that
makes sense for the subclass overriding this method.
"""
- raise NotImplementedError # pragma: no cover
+ raise NotImplementedError
def _next_predictable_id(self):
"""Generate a predictable id for when Mailman being tested.
@@ -97,7 +97,7 @@ class _PredictableIDGenerator:
The type of the returned id is intended to be the type that
makes sense for the subclass overriding this method.
"""
- raise NotImplementedError # pragma: no cover
+ raise NotImplementedError
def _next_id(self):
with self._lock: