From fb6bdc4d314d7a925b3db98901caa1c1d55bc06e Mon Sep 17 00:00:00 2001 From: Derek Murray Date: Wed, 1 Aug 2018 10:09:36 -0700 Subject: Fix lint error in distribute_coordinator.py. PiperOrigin-RevId: 206947057 --- tensorflow/python/distribute/distribute_coordinator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/distribute/distribute_coordinator.py b/tensorflow/python/distribute/distribute_coordinator.py index b5b4b28033..dab1ed43ca 100644 --- a/tensorflow/python/distribute/distribute_coordinator.py +++ b/tensorflow/python/distribute/distribute_coordinator.py @@ -237,7 +237,7 @@ class _WorkerContext(object): def _run(worker_fn, cluster_spec, task_type, task_id, between_graph, rpc_layer, worker_barrier): with _WorkerContext(cluster_spec, task_type, task_id, between_graph, - rpc_layer, worker_barrier): + rpc_layer, worker_barrier): worker_fn() -- cgit v1.2.3