Fix flake8 errors.
This commit is contained in:
parent
e08c378900
commit
f51d9cc4f5
@ -13,12 +13,14 @@ if not PY2K:
|
|||||||
buffer = memoryview
|
buffer = memoryview
|
||||||
filter, map, zip = filter, map, zip
|
filter, map, zip = filter, map, zip
|
||||||
|
|
||||||
def iteritems(dikt): return iter(dikt.items()) # noqa: E731
|
def iteritems(dikt):
|
||||||
|
return iter(dikt.items()) # noqa: E731
|
||||||
from functools import reduce
|
from functools import reduce
|
||||||
else:
|
else:
|
||||||
buffer = buffer
|
buffer = buffer
|
||||||
from itertools import ifilter, imap, izip
|
from itertools import ifilter, imap, izip
|
||||||
filter, map, zip = ifilter, imap, izip
|
filter, map, zip = ifilter, imap, izip
|
||||||
|
|
||||||
def iteritems(dikt): return dikt.iteritems() # noqa: E731
|
def iteritems(dikt):
|
||||||
|
return dikt.iteritems() # noqa: E731
|
||||||
reduce = reduce
|
reduce = reduce
|
||||||
|
@ -123,7 +123,8 @@ def new(options=None):
|
|||||||
def load(default, user=None):
|
def load(default, user=None):
|
||||||
|
|
||||||
# return set of (section, option)
|
# return set of (section, option)
|
||||||
def setify(cp): return set((section, option) for section in cp.sections()
|
def setify(cp):
|
||||||
|
return set((section, option) for section in cp.sections()
|
||||||
for option in cp.options(section))
|
for option in cp.options(section))
|
||||||
|
|
||||||
parser = new()
|
parser = new()
|
||||||
|
@ -123,7 +123,8 @@ class uWSGIMixin(Mixin):
|
|||||||
|
|
||||||
timedelta = conf.getint("moderation", "purge-after")
|
timedelta = conf.getint("moderation", "purge-after")
|
||||||
|
|
||||||
def purge(signum): return self.db.comments.purge(timedelta)
|
def purge(signum):
|
||||||
|
return self.db.comments.purge(timedelta)
|
||||||
uwsgi.register_signal(1, "", purge)
|
uwsgi.register_signal(1, "", purge)
|
||||||
uwsgi.add_timer(1, timedelta)
|
uwsgi.add_timer(1, timedelta)
|
||||||
|
|
||||||
|
@ -98,7 +98,8 @@ class SQLite3:
|
|||||||
# limit max. nesting level to 1
|
# limit max. nesting level to 1
|
||||||
if self.version == 2:
|
if self.version == 2:
|
||||||
|
|
||||||
def first(rv): return list(map(operator.itemgetter(0), rv))
|
def first(rv):
|
||||||
|
return list(map(operator.itemgetter(0), rv))
|
||||||
|
|
||||||
with sqlite3.connect(self.path) as con:
|
with sqlite3.connect(self.path) as con:
|
||||||
top = first(con.execute(
|
top = first(con.execute(
|
||||||
|
@ -37,7 +37,9 @@ class Dummy:
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
def curl(method, host, path): return Dummy()
|
def curl(method, host, path):
|
||||||
|
return Dummy()
|
||||||
|
|
||||||
|
|
||||||
def loads(data): return json.loads(data.decode('utf-8'))
|
def loads(data):
|
||||||
|
return json.loads(data.decode('utf-8'))
|
||||||
|
@ -119,7 +119,8 @@ class TestComments(unittest.TestCase):
|
|||||||
|
|
||||||
def testVerifyFields(self):
|
def testVerifyFields(self):
|
||||||
|
|
||||||
def verify(comment): return comments.API.verify(comment)[0]
|
def verify(comment):
|
||||||
|
return comments.API.verify(comment)[0]
|
||||||
|
|
||||||
# text is missing
|
# text is missing
|
||||||
self.assertFalse(verify({}))
|
self.assertFalse(verify({}))
|
||||||
|
@ -97,7 +97,8 @@ class TestGuard(unittest.TestCase):
|
|||||||
|
|
||||||
def testSelfReply(self):
|
def testSelfReply(self):
|
||||||
|
|
||||||
def payload(id): return json.dumps({"text": "...", "parent": id})
|
def payload(id):
|
||||||
|
return json.dumps({"text": "...", "parent": id})
|
||||||
|
|
||||||
client = self.makeClient("127.0.0.1", self_reply=False)
|
client = self.makeClient("127.0.0.1", self_reply=False)
|
||||||
self.assertEqual(client.post(
|
self.assertEqual(client.post(
|
||||||
@ -124,7 +125,8 @@ class TestGuard(unittest.TestCase):
|
|||||||
|
|
||||||
def testRequireEmail(self):
|
def testRequireEmail(self):
|
||||||
|
|
||||||
def payload(email): return json.dumps({"text": "...", "email": email})
|
def payload(email):
|
||||||
|
return json.dumps({"text": "...", "email": email})
|
||||||
|
|
||||||
client = self.makeClient("127.0.0.1", ratelimit=4, require_email=False)
|
client = self.makeClient("127.0.0.1", ratelimit=4, require_email=False)
|
||||||
client_strict = self.makeClient(
|
client_strict = self.makeClient(
|
||||||
@ -144,8 +146,8 @@ class TestGuard(unittest.TestCase):
|
|||||||
|
|
||||||
def testRequireAuthor(self):
|
def testRequireAuthor(self):
|
||||||
|
|
||||||
def payload(author): return json.dumps(
|
def payload(author):
|
||||||
{"text": "...", "author": author})
|
return json.dumps({"text": "...", "author": author})
|
||||||
|
|
||||||
client = self.makeClient(
|
client = self.makeClient(
|
||||||
"127.0.0.1", ratelimit=4, require_author=False)
|
"127.0.0.1", ratelimit=4, require_author=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user