From 14913b45e9208d2b7b7eb917ca88ce4c2d8bd000 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deniz=20=C5=9Eafak?= Date: Thu, 23 Jul 2026 02:17:46 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20import=20importlib.util=20explicitly=20(?= =?UTF-8?q?not=20auto-loaded=20in=20Python=203.12)=20=E2=80=94=20broke=20p?= =?UTF-8?q?lugin=20loading,=20causing=20empty=20voice=20lists?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- abogen/tts_plugin/loader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abogen/tts_plugin/loader.py b/abogen/tts_plugin/loader.py index fa600ab..7c8baf1 100644 --- a/abogen/tts_plugin/loader.py +++ b/abogen/tts_plugin/loader.py @@ -12,7 +12,7 @@ The loader does NOT: from __future__ import annotations -import importlib +import importlib.util import re import sys import types