OpenHands/openhands/cli/suppress_warnings.py
Robert Brennan 147ffb7e42
Suppress pydub warning about ffmpeg/avconv not found (#8940)
Co-authored-by: openhands <openhands@all-hands.dev>
2025-06-17 14:44:32 -04:00

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,
)