mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-06-21 16:39:40 +00:00
Use black with -l 120 param.
This commit is contained in:
@ -24,6 +24,7 @@ from websockets.exceptions import ConnectionClosed, WebSocketException
|
||||
from gns3server.compute.notification_manager import NotificationManager
|
||||
|
||||
import logging
|
||||
|
||||
log = logging.getLogger(__name__)
|
||||
|
||||
router = APIRouter()
|
||||
@ -50,7 +51,7 @@ async def notification_ws(websocket: WebSocket):
|
||||
await websocket.close()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
if __name__ == "__main__":
|
||||
|
||||
import uvicorn
|
||||
from fastapi import FastAPI
|
||||
|
Reference in New Issue
Block a user