summaryrefslogtreecommitdiffstats
path: root/g4f/Provider/base_provider.py
diff options
context:
space:
mode:
Diffstat (limited to 'g4f/Provider/base_provider.py')
-rw-r--r--g4f/Provider/base_provider.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/g4f/Provider/base_provider.py b/g4f/Provider/base_provider.py
index def2cd6d..e667819a 100644
--- a/g4f/Provider/base_provider.py
+++ b/g4f/Provider/base_provider.py
@@ -1,9 +1,11 @@
-from abc import ABC, abstractmethod
+from __future__ import annotations
-from ..typing import Any, CreateResult, AsyncGenerator, Union
+import asyncio
+from abc import ABC, abstractmethod
import browser_cookie3
-import asyncio
+
+from ..typing import Any, AsyncGenerator, CreateResult, Union
class BaseProvider(ABC):