Fix: add missing UUID imports

This commit is contained in:
YueGuobin 2026-06-16 00:24:37 +08:00
parent d6b337bc3a
commit 7d8ab399da
No known key found for this signature in database
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ import bcrypt
from fastapi import Request, Query, Depends, HTTPException, WebSocket, status
from fastapi.security import OAuth2PasswordBearer
from typing import Optional
from uuid import UUID
from sqlalchemy import select
from gns3server import schemas

View File

@ -32,6 +32,7 @@ import asyncio
import logging
import socket
import uuid
from uuid import UUID
import bcrypt
from typing import Any, Annotated
from urllib.parse import parse_qs