Skip to content

Commit

Permalink
Sort imports
Browse files Browse the repository at this point in the history
  • Loading branch information
clearml committed Dec 25, 2024
1 parent be9965a commit dea2be0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions clearml/router/fastapi_proxy.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
from fastapi import FastAPI, Request, Response
from typing import Optional
from multiprocessing import Process
from starlette.middleware.base import BaseHTTPMiddleware
from starlette.routing import Match
import functools
import threading
from multiprocessing import Process
from typing import Optional

import httpx
import uvicorn
from fastapi import FastAPI, Request, Response
from starlette.middleware.base import BaseHTTPMiddleware
from starlette.routing import Match

from .route import Route
from ..utilities.process.mp import SafeQueue

Expand Down

0 comments on commit dea2be0

Please sign in to comment.