plotly.py icon indicating copy to clipboard operation
plotly.py copied to clipboard

Importing plotly.tools changes warnings.formatwarning as a side effect

Open SlaushVunter opened this issue 3 years ago • 0 comments

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)

SlaushVunter avatar Aug 29 '22 11:08 SlaushVunter