diff options
Diffstat (limited to 'g4f/Provider/Equing.py')
-rw-r--r-- | g4f/Provider/Equing.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/g4f/Provider/Equing.py b/g4f/Provider/Equing.py index 8595c73e..0ebb93a5 100644 --- a/g4f/Provider/Equing.py +++ b/g4f/Provider/Equing.py @@ -1,6 +1,10 @@ -import requests, json +from __future__ import annotations + +import json +from abc import ABC, abstractmethod + +import requests -from abc import ABC, abstractmethod from ..typing import Any, CreateResult |