style(chat.py): format imports using PEP8 style guide
This commit is contained in:
parent
4046a7b1e5
commit
e50e9b187c
1 changed files with 7 additions and 1 deletions
|
|
@ -1,4 +1,10 @@
|
|||
from fastapi import APIRouter, WebSocket, WebSocketDisconnect, WebSocketException, status
|
||||
from fastapi import (
|
||||
APIRouter,
|
||||
WebSocket,
|
||||
WebSocketDisconnect,
|
||||
WebSocketException,
|
||||
status,
|
||||
)
|
||||
|
||||
from langflow.api.chat_manager import ChatManager
|
||||
from langflow.utils.logger import logger
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue