Skip to content

Commit

Permalink
Revert automatic pep8 fix.
Browse files Browse the repository at this point in the history
Mark pep8 rules E225 and E226 as ignored, to prevent
automatic changes in code formating.
  • Loading branch information
kowalski committed Feb 27, 2018
1 parent 158cdbe commit 329f89a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/http_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def _write(self, chunk):
raise asyncio.CancelledError('Cannot write to closing transport')
self._transport.write(chunk)

async def write(self, chunk, *, drain=True, LIMIT=64 * 1024):
async def write(self, chunk, *, drain=True, LIMIT=64*1024):
"""Writes chunk of data to a stream.
write_eof() indicates end of stream.
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[pep8]
max-line-length=79
ignore=E225,E226

[easy_install]
zip_ok = false
Expand Down

0 comments on commit 329f89a

Please sign in to comment.