summaryrefslogtreecommitdiff
path: root/tests/fixtureapps/nocl.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fixtureapps/nocl.py')
-rw-r--r--tests/fixtureapps/nocl.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/fixtureapps/nocl.py b/tests/fixtureapps/nocl.py
index c95a4f5..8948422 100644
--- a/tests/fixtureapps/nocl.py
+++ b/tests/fixtureapps/nocl.py
@@ -1,6 +1,5 @@
def chunks(l, n): # pragma: no cover
- """ Yield successive n-sized chunks from l.
- """
+ """Yield successive n-sized chunks from l."""
for i in range(0, len(l), n):
yield l[i : i + n]