mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
11 lines
262 B
Python
11 lines
262 B
Python
"""Module to suppress common warnings."""
|
|
|
|
import warnings
|
|
|
|
# Suppress pydub warning about ffmpeg/avconv
|
|
warnings.filterwarnings(
|
|
'ignore',
|
|
message="Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work",
|
|
category=RuntimeWarning,
|
|
)
|