Fixing Lint after flake upgrade (#1162)

* Fixing Lint after flake upgrade

* more lint fixes
This commit is contained in:
Richard Liaw
2017-10-26 21:02:07 -05:00
committed by Robert Nishihara
parent 6da7761d5d
commit 797f4fcbf3
11 changed files with 34 additions and 37 deletions
+2 -2
View File
@@ -224,13 +224,13 @@ class DockerRunner(object):
try:
self._stop_node(self.head_container_id)
except:
except Exception:
success = False
for container_id in self.worker_container_ids:
try:
self._stop_node(container_id)
except:
except Exception:
success = False
return success