Skip to content

Commit 3713aa4

Browse files
committed
switch to pep8
1 parent ecafcc8 commit 3713aa4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ python:
66
- "3.5"
77
- "3.6"
88
install:
9-
- pip install flake8 ordereddict
9+
- pip install pep8
1010
before_script:
11-
flake8 .
11+
pep8 .
1212
script:
1313
- python setup.py -q install

reportportal_client/service_async.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ def stop(self, nowait=False):
106106
if nowait:
107107
self._stop_nowait.set()
108108
self.queue.put_nowait(self._sentinel_item)
109-
if (self._thread.isAlive()
110-
and self._thread is not threading.currentThread()):
109+
if (self._thread.isAlive() and
110+
self._thread is not threading.currentThread()):
111111
self._thread.join()
112112
self._thread = None
113113

0 commit comments

Comments
 (0)