🔥 chore(lcserve.py): remove unused import statements

The import statements for pathlib.Path and fastapi.staticfiles.StaticFiles were not used in the code and were therefore removed to improve code readability and maintainability.
This commit is contained in:
Gabriel Almeida 2023-05-22 07:46:40 -03:00
commit aeba16fa8a

View file

@ -1,7 +1,9 @@
# This file is used by lc-serve to load the mounted app and serve it.
from pathlib import Path
from fastapi.staticfiles import StaticFiles
from langflow.main import create_app
app = create_app()