summaryrefslogtreecommitdiff
path: root/src/mailman/utilities/tests/test_uid.py
diff options
context:
space:
mode:
authorBarry Warsaw2016-03-25 19:03:05 -0400
committerBarry Warsaw2016-03-25 19:03:05 -0400
commitc81e250e3a5690e8c8f9f4dc4b460c2a81731c48 (patch)
tree8152b01042ce3cd9a2f118759cbab7193f41b64e /src/mailman/utilities/tests/test_uid.py
parent01433eedaeea07b72bfc8b2a970a1e0023975cd6 (diff)
downloadmailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.tar.gz
mailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.tar.zst
mailman-c81e250e3a5690e8c8f9f4dc4b460c2a81731c48.zip
Diffstat (limited to 'src/mailman/utilities/tests/test_uid.py')
-rw-r--r--src/mailman/utilities/tests/test_uid.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/mailman/utilities/tests/test_uid.py b/src/mailman/utilities/tests/test_uid.py
index dce63caf3..0ee53a211 100644
--- a/src/mailman/utilities/tests/test_uid.py
+++ b/src/mailman/utilities/tests/test_uid.py
@@ -17,11 +17,6 @@
"""Test the uid module."""
-__all__ = [
- 'TestUID',
- ]
-
-
import os
import uuid
import unittest
@@ -33,7 +28,6 @@ from mailman.utilities import uid
from unittest.mock import patch
-
class TestUID(unittest.TestCase):
layer = ConfigLayer
@@ -60,7 +54,7 @@ class TestUID(unittest.TestCase):
def test_uid_record_try_again(self):
called = False
- def record_second(ignore):
+ def record_second(ignore): # flake8: noqa
nonlocal called
if not called:
called = True