Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Revamp streaming #253

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed up a few imports :)
  • Loading branch information
theengineear committed Jul 7, 2015
commit f60f8119bc85fd62a5fc9505c538d960a326b0aa
1 change: 1 addition & 0 deletions plotly/graph_objs/graph_objs.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
from __future__ import absolute_import

import copy
import sys
import warnings
from collections import OrderedDict

Expand Down
2 changes: 1 addition & 1 deletion plotly/grid_objs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"""
from __future__ import absolute_import

from plotly.grid_objs import Grid, Column
from plotly.grid_objs.grid_objs import Grid, Column
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.annotations import *


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.axis_scales import *


Expand Down
3 changes: 2 additions & 1 deletion plotly/tests/test_optional/test_matplotlylib/test_bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.bars import *


Expand Down
3 changes: 2 additions & 1 deletion plotly/tests/test_optional/test_matplotlylib/test_lines.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.lines import *


Expand Down
3 changes: 2 additions & 1 deletion plotly/tests/test_optional/test_matplotlylib/test_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
matplotlib.use('Agg')
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.scatter import *


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
from matplotlib.gridspec import GridSpec
import matplotlib.pyplot as plt

from plotly.tests.test_optional.optional_utils import compare_dict, run_fig
from plotly.tests.utils import compare_dict
from plotly.tests.test_optional.optional_utils import run_fig
from plotly.tests.test_optional.test_matplotlylib.data.subplots import *


Expand Down