commit | 43b3b10b716dd78e0ebeab4ac29da0a50aa948f6 | [log] [tgz] |
---|---|---|
author | Chris Liechti <cliechti@gmx.net> | Tue Jun 07 21:31:47 2016 +0200 |
committer | Chris Liechti <cliechti@gmx.net> | Tue Jun 07 21:31:47 2016 +0200 |
tree | 1fd328a81b962849221eead30fa4955e0ff6f479 | |
parent | c9e4302a687e8d8bba798233aaab85b73c88771d [diff] [blame] |
style: flake8 findings
diff --git a/serial/aio.py b/serial/aio.py index 5756be0..85a1bb8 100644 --- a/serial/aio.py +++ b/serial/aio.py
@@ -278,7 +278,7 @@ def _set_write_buffer_limits(self, high=None, low=None): """Ensure consistent write-buffer limits.""" if high is None: - high = 64*1024 if low is None else 4*low + high = 64 * 1024 if low is None else 4 * low if low is None: low = high // 4 if not high >= low >= 0: