Skip to content

Commit 774b334

Browse files
committed
style: make linter happer
1 parent 90b1ff9 commit 774b334

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/functions_framework/aio/__init__.py

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@
2525

2626
from cloudevents.http import from_http
2727
from cloudevents.http.event import CloudEvent
28+
from starlette.applications import Starlette
29+
from starlette.exceptions import HTTPException
30+
from starlette.middleware import Middleware
31+
from starlette.requests import Request
32+
from starlette.responses import JSONResponse, Response
33+
from starlette.routing import Route
2834

2935
from functions_framework import (
3036
_enable_execution_id_logging,
@@ -36,13 +42,6 @@
3642
MissingSourceException,
3743
)
3844

39-
from starlette.applications import Starlette
40-
from starlette.exceptions import HTTPException
41-
from starlette.middleware import Middleware
42-
from starlette.requests import Request
43-
from starlette.responses import JSONResponse, Response
44-
from starlette.routing import Route
45-
4645
HTTPResponse = Union[
4746
Response, # Functions can return a full Starlette Response object
4847
str, # Str returns are wrapped in Response(result)

0 commit comments

Comments
 (0)