apionly.py 258 B

123456789
  1. import warnings
  2. from seaborn import * # noqa
  3. reset_orig() # noqa
  4. msg = (
  5. "As seaborn no longer sets a default style on import, the seaborn.apionly "
  6. "module is deprecated. It will be removed in a future version."
  7. )
  8. warnings.warn(msg, UserWarning)