Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion quantmod/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import six
import datetime as dt
import pandas as pd
import plotly.plotly as py
import chart_studio.plotly as py
import plotly.offline as pyo

from . import tools
Expand Down
2 changes: 1 addition & 1 deletion quantmod/theming/skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""
# flake8: noqa

_PLACEHOLDER = False
_PLACEHOLDER = None

# Color primitives
BASE_COLORS = dict()
Expand Down
7 changes: 4 additions & 3 deletions quantmod/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import six
import warnings
import plotly
import chart_studio.tools

from . import auth
from . import utils
Expand Down Expand Up @@ -245,6 +246,6 @@ def reset_config_file():
ensure_local_files()


set_credentials_file = plotly.tools.set_credentials_file
get_credentials_file = plotly.tools.get_credentials_file
reset_credentials_file = plotly.tools.reset_credentials_file
set_credentials_file = chart_studio.tools.set_credentials_file
get_credentials_file = chart_studio.tools.get_credentials_file
reset_credentials_file = chart_studio.tools.reset_credentials_file