From b5bdbad36939c1ee924900c89fc601777178171e Mon Sep 17 00:00:00 2001 From: Konrad Heidler Date: Wed, 9 Jul 2025 10:18:16 +0200 Subject: [PATCH] Fix pandas_audio_methods code snippet Fixed the example code snippet which was incorrectly importing `SFMethods` from `pandas_image_methods` rather than `pandas_audio_methods`. --- docs/hub/datasets-pandas.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/hub/datasets-pandas.md b/docs/hub/datasets-pandas.md index f3e9d42332..366149904f 100644 --- a/docs/hub/datasets-pandas.md +++ b/docs/hub/datasets-pandas.md @@ -167,7 +167,7 @@ Using [pandas-audio-methods](https://github.com/lhoestq/pandas-audio-methods) yo ```python import pandas as pd -from pandas_image_methods import SFMethods +from pandas_audio_methods import SFMethods pd.api.extensions.register_series_accessor("sf")(SFMethods)