Skip to content

Commit 7a0da88

Browse files
committed
Remove import *. Replace with explicit public interface.
1 parent c1422cb commit 7a0da88

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

plotly/plotly/__init__.py

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,7 @@
77
verifiable account (username/api-key pair) and a network connection.
88
99
"""
10-
from __future__ import absolute_import
11-
12-
from plotly.plotly.plotly import *
13-
14-
__all__ = ["sign_in", "update_plot_options", "get_plot_options",
15-
"get_credentials", "iplot", "plot", "iplot_mpl", "plot_mpl",
16-
"get_figure", "Stream", "image"]
10+
from . plotly import (
11+
sign_in, update_plot_options, get_plot_options, get_credentials, iplot,
12+
plot, iplot_mpl, plot_mpl, get_figure, Stream, image
13+
)

0 commit comments

Comments
 (0)