mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-13 02:37:53 +01:00
12 lines
242 B
Python
12 lines
242 B
Python
import warnings
|
|
|
|
from pandas._testing import * # noqa
|
|
|
|
warnings.warn(
|
|
(
|
|
"pandas.util.testing is deprecated. Use the functions in the "
|
|
"public API at pandas.testing instead."
|
|
),
|
|
FutureWarning,
|
|
stacklevel=2,
|
|
)
|