8 lines
139 B
Python
8 lines
139 B
Python
import warnings
|
|
|
|
warnings.filterwarnings(
|
|
"ignore",
|
|
category=UserWarning,
|
|
message="pkg_resources is deprecated as an API.*",
|
|
)
|