aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/user_ops
diff options
context:
space:
mode:
authorGravatar Martin Wicke <wicke@google.com>2017-01-08 01:05:21 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-08 01:18:42 -0800
commit2691c1260f792e85a40f598809e84aa60d19e227 (patch)
tree77aceea44eda407ee4006d38e38d15d90b6cf89d /tensorflow/python/user_ops
parent367078ab8c0ca8feab1ca88e871279df150639d5 (diff)
Fix a bad comment.
Change: 143889993
Diffstat (limited to 'tensorflow/python/user_ops')
-rw-r--r--tensorflow/python/user_ops/user_ops.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/tensorflow/python/user_ops/user_ops.py b/tensorflow/python/user_ops/user_ops.py
index fce89ec91b..17dbab706c 100644
--- a/tensorflow/python/user_ops/user_ops.py
+++ b/tensorflow/python/user_ops/user_ops.py
@@ -19,10 +19,12 @@ from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-from tensorflow.python.ops import gen_user_ops
-from tensorflow.python.ops.gen_user_ops import *
+from tensorflow.python.ops import gen_user_ops as _gen_user_ops
+
+# go/tf-wildcard-import
+from tensorflow.python.ops.gen_user_ops import * # pylint: disable=wildcard-import
def my_fact():
"""Example of overriding the generated code for an Op."""
- return gen_user_ops._fact()
+ return _gen_user_ops._fact() # pylint: disable=protected-access