aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/examples/learn
diff options
context:
space:
mode:
authorGravatar Dandelion Mané <dandelion@google.com>2017-03-13 12:52:11 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-13 14:06:48 -0700
commit32c11fd917f82619f76273f6b83d7e21fb68c173 (patch)
treea9a7b5c01e32b2e079cb939d41fefdf5adc4e9ca /tensorflow/examples/learn
parent7b8e31c58140fe6c6bdd3a0d946b978c2a216702 (diff)
Fix lint issues introduced by my pull from GitHub.
Change: 149985352
Diffstat (limited to 'tensorflow/examples/learn')
-rw-r--r--tensorflow/examples/learn/iris.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tensorflow/examples/learn/iris.py b/tensorflow/examples/learn/iris.py
index 0c29caf9c7..7b65eb521a 100644
--- a/tensorflow/examples/learn/iris.py
+++ b/tensorflow/examples/learn/iris.py
@@ -16,8 +16,11 @@
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-from sklearn import model_selection
+
+
from sklearn import metrics
+from sklearn import model_selection
+
import tensorflow as tf