From 78bfbe717d7f9610da9c119ad47f4fba3738775a Mon Sep 17 00:00:00 2001 From: Tekky <98614666+xtekky@users.noreply.github.com> Date: Sun, 17 Sep 2023 22:23:54 +0100 Subject: Revert "Fix type hint" --- tool/provider_init.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tool/provider_init.py') diff --git a/tool/provider_init.py b/tool/provider_init.py index fac099ed..cd7f9333 100644 --- a/tool/provider_init.py +++ b/tool/provider_init.py @@ -3,13 +3,13 @@ from pathlib import Path def main(): content = create_content() - with open("g4f/Provider/__init__.py", "w", encoding="utf-8") as f: + with open("g4f/provider/__init__.py", "w", encoding="utf-8") as f: f.write(content) def create_content(): path = Path() - paths = path.glob("g4f/Provider/*.py") + paths = path.glob("g4f/provider/*.py") paths = [p for p in paths if p.name not in ["__init__.py", "base_provider.py"]] classnames = [p.stem for p in paths] -- cgit v1.2.3