plotly.py
plotly.py copied to clipboard
Importing plotly.tools changes warnings.formatwarning as a side effect
Importing plotly.tools changes warnings.formatwarning as a side effect. Is this necessary? If not, it would be better to only do this when requested explicitely.
Example:
import warnings
print(warnings.formatwarning)
import plotly.tools
print(warnings.formatwarning)