Fixed E226 flake8 errors

missing whitespace around arithmetic operator
This commit is contained in:
Andras Tim
2017-07-17 01:25:08 +02:00
parent 2e8caefcab
commit 4b22f270a3
19 changed files with 55 additions and 55 deletions

View File

@@ -68,7 +68,7 @@ def test_write_log_entry():
entry_lines = entry.splitlines()
assert len(entry_lines) == 5
assert entry_lines[0] == 'F name'
assert entry_lines[1:] == [' '+line for line in longrepr.splitlines()]
assert entry_lines[1:] == [' ' + line for line in longrepr.splitlines()]
class TestWithFunctionIntegration(object):