aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/debug/cli/analyzer_cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/python/debug/cli/analyzer_cli.py')
-rw-r--r--tensorflow/python/debug/cli/analyzer_cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/debug/cli/analyzer_cli.py b/tensorflow/python/debug/cli/analyzer_cli.py
index da27f4cebe..e863c2ddb9 100644
--- a/tensorflow/python/debug/cli/analyzer_cli.py
+++ b/tensorflow/python/debug/cli/analyzer_cli.py
@@ -1312,7 +1312,7 @@ class DebugAnalyzer(object):
all_inputs = copy.copy(tracker(node_name, is_control=False))
is_ctrl = [False] * len(all_inputs)
if include_control:
- # Sort control inputs or recipients in in alphabetical order of the node
+ # Sort control inputs or recipients in alphabetical order of the node
# names.
ctrl_inputs = sorted(tracker(node_name, is_control=True))
all_inputs.extend(ctrl_inputs)