Skip to content

Commit 30c2f4a

Browse files
committed
A little cleanup.
1 parent bde22fd commit 30c2f4a

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

plotly/graph_objs/graph_objs_tools.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
from __future__ import absolute_import
2-
from plotly import utils
32
import textwrap
43
import os
54
import sys
5+
6+
from plotly import utils
67
from plotly.resources import (GRAPH_REFERENCE_GRAPH_OBJS_META,
78
GRAPH_REFERENCE_NAME_TO_KEY,
89
GRAPH_REFERENCE_KEY_TO_NAME,

plotly/widgets/graph_widget.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from collections import deque
2-
import uuid
31
import os
42
import sys
3+
import uuid
4+
from collections import deque
55

66
# TODO: protected imports?
77
from IPython.html import widgets

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from setuptools import setup
21
from setuptools import setup, find_packages
32

43
exec (open('plotly/version.py').read())
@@ -9,7 +8,6 @@ def readme():
98
with open('README.rst') as f:
109
return f.read()
1110

12-
1311
setup(name='plotly',
1412
version=__version__,
1513
use_2to3=False,

0 commit comments

Comments
 (0)