mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-15 11:38:12 +01:00
12 lines
372 B
Python
12 lines
372 B
Python
from pandas.util._decorators import Appender, Substitution, cache_readonly # noqa
|
|
|
|
from pandas.core.util.hashing import hash_array, hash_pandas_object # noqa
|
|
|
|
|
|
def __getattr__(name):
|
|
if name == "testing":
|
|
import pandas.util.testing
|
|
|
|
return pandas.util.testing
|
|
else:
|
|
raise AttributeError(f"module 'pandas.util' has no attribute '{name}'")
|