refactor: remove unused json import from ai base
The ai base module in gptbot no longer requires the json package, leading to its removal. This cleanup enhances code readability and reduces unnecessary import overhead, streamlining the functionality of the ai base class without affecting its external behavior. Such optimizations contribute to the overall maintainability and performance of the codebase.
This commit is contained in:
parent
27df072c0d
commit
2c04d8bf9c
1 changed files with 0 additions and 1 deletions
|
@ -1,7 +1,6 @@
|
||||||
from ...classes.logging import Logger
|
from ...classes.logging import Logger
|
||||||
|
|
||||||
import asyncio
|
import asyncio
|
||||||
import json
|
|
||||||
from functools import partial
|
from functools import partial
|
||||||
from typing import Any, AsyncGenerator, Dict, Optional, Mapping
|
from typing import Any, AsyncGenerator, Dict, Optional, Mapping
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue