aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Josh Levenberg <josh11b@tensorflow.org>2016-02-11 13:30:11 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-02-11 17:13:36 -0800
commit3c933761e40101952fdcc0896bb3de1c5654192b (patch)
tree6bac107605d82bddb7d447f14d61a086fa882403
parent62622d78c5cd45fbbe04497de856ff5424051678 (diff)
Fix TODO addressing imports in gen_cc_md.
Change: 114471496
-rw-r--r--tensorflow/tools/docs/gen_cc_md.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/tensorflow/tools/docs/gen_cc_md.py b/tensorflow/tools/docs/gen_cc_md.py
index 8bc29e97e8..433ad1ccbb 100644
--- a/tensorflow/tools/docs/gen_cc_md.py
+++ b/tensorflow/tools/docs/gen_cc_md.py
@@ -18,14 +18,15 @@ from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
-# pylint: disable=g-bad-import-order
-from tensorflow.python import flags
-
import os
import re
import sys
+
from BeautifulSoup import BeautifulStoneSoup
+from tensorflow.python import flags
+
+
ANCHOR_RE = re.compile(r'\W+')
PAGE_TEMPLATE = '''# {0} `{1}`