chore: Update import statement in types.py
The import statement in types.py has been updated to use the `typing` module instead of the deprecated `TYPE_CHECKING` constant. This change improves code maintainability and ensures compatibility with the latest Python standards.
This commit is contained in:
parent
cda1f63213
commit
c3d912fdab
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
import asyncio
|
||||
import json
|
||||
|
||||
from git import TYPE_CHECKING
|
||||
from typing import TYPE_CHECKING
|
||||
from loguru import logger
|
||||
|
||||
from langflow.custom.utils import abuild_custom_components, build_custom_components
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue