Fix linting errors. (#3127)

This commit is contained in:
Robert Nishihara
2018-10-24 16:30:00 -07:00
committed by Philipp Moritz
parent 55d161b49f
commit 5aa29613db
12 changed files with 12 additions and 12 deletions
@@ -50,7 +50,7 @@ def driver(redis_address, driver_index):
while time.time() - start_time < timeout:
try:
actor = actor_class.remote()
except Exception as e:
except Exception:
time.sleep(0.1)
else:
return actor
@@ -199,7 +199,7 @@ def cleanup_driver(redis_address, driver_index):
try:
actor = actor_class.remote(driver_index, actor_index,
redis_address)
except Exception as e:
except Exception:
time.sleep(0.1)
else:
return actor