From 627a7ee99127065ea5a5285f780ae327d9212bea Mon Sep 17 00:00:00 2001 From: Tim Mahrt Date: Sat, 4 Nov 2023 20:19:13 +0900 Subject: [PATCH] fix: missing parameter in example script --- examples/get_pitch_and_formants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/get_pitch_and_formants.py b/examples/get_pitch_and_formants.py index f7ac78f..adac7d2 100644 --- a/examples/get_pitch_and_formants.py +++ b/examples/get_pitch_and_formants.py @@ -74,7 +74,7 @@ 450, forceRegenerate=False, ) -tg = textgrid.openTextgrid(join(tgPath, "mary.TextGrid")) +tg = textgrid.openTextgrid(join(tgPath, "mary.TextGrid"), False) tier = tg.getTier("phone") filteredData = tier.getValuesInIntervals(maryPitchData)