aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/distribute
diff options
context:
space:
mode:
authorGravatar Derek Murray <mrry@google.com>2018-08-01 10:09:36 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-01 10:13:47 -0700
commitfb6bdc4d314d7a925b3db98901caa1c1d55bc06e (patch)
treed5a11b4556d3825a7a2e412147350b6cf7fdae47 /tensorflow/python/distribute
parent0589444f3dc6d6c13db26e93854b93b8cc7ca4e0 (diff)
Fix lint error in distribute_coordinator.py.
PiperOrigin-RevId: 206947057
Diffstat (limited to 'tensorflow/python/distribute')
-rw-r--r--tensorflow/python/distribute/distribute_coordinator.py2
1 files changed, 1 insertions, 1 deletions
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()