aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/__init__.py')
-rw-r--r--tensorflow/__init__.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tensorflow/__init__.py b/tensorflow/__init__.py
index ec7cd91e7e..92d390a976 100644
--- a/tensorflow/__init__.py
+++ b/tensorflow/__init__.py
@@ -15,13 +15,14 @@
# Bring in all of the public TensorFlow interface into this
# module.
-# pylint: disable=wildcard-import
+
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
+# pylint: disable=wildcard-import
from tensorflow.python import *
-
+# pylint: enable=wildcard-import
# Lazily import the `tf.contrib` module. This avoids loading all of the
# dependencies of `tf.contrib` at `import tensorflow` time.