summaryrefslogtreecommitdiff
path: root/src/mailman/rest/tests
diff options
context:
space:
mode:
authorAurélien Bompard2016-11-21 12:45:16 +0100
committerAurélien Bompard2016-11-21 12:45:16 +0100
commit0a5efbdf15a67f6e4065c78b0c70e72202e0d965 (patch)
treeeb4da32bbfb874f999736d8bf678870e08459818 /src/mailman/rest/tests
parent88b40de08e133122ae464de922d3a9e9c3ad1376 (diff)
downloadmailman-0a5efbdf15a67f6e4065c78b0c70e72202e0d965.tar.gz
mailman-0a5efbdf15a67f6e4065c78b0c70e72202e0d965.tar.zst
mailman-0a5efbdf15a67f6e4065c78b0c70e72202e0d965.zip
Fix the Flake8 ignore tags
Diffstat (limited to 'src/mailman/rest/tests')
-rw-r--r--src/mailman/rest/tests/test_paginate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mailman/rest/tests/test_paginate.py b/src/mailman/rest/tests/test_paginate.py
index 5f28d093a..cd2b76d7a 100644
--- a/src/mailman/rest/tests/test_paginate.py
+++ b/src/mailman/rest/tests/test_paginate.py
@@ -48,7 +48,7 @@ class TestPaginateHelper(unittest.TestCase):
class Resource(CollectionMixin):
def _get_collection(self, request):
return ['one', 'two', 'three', 'four', 'five']
- def _resource_as_dict(self, res): # noqa: E301
+ def _resource_as_dict(self, res): # noqa: E306
return {'value': res}
return Resource()