Skip to content

Commit 5614b75

Browse files
Restyled by isort
1 parent 74a7651 commit 5614b75

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

minos/api_gateway/rest/handler.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,23 @@
1+
import json
12
import logging
23
from typing import (
34
Any,
45
Optional,
56
)
6-
import json
7+
78
from aiohttp import (
89
ClientConnectorError,
910
ClientResponse,
1011
ClientSession,
1112
web,
1213
)
13-
from yarl import URL
14+
from yarl import (
15+
URL,
16+
)
1417

15-
from .exceptions import NoTokenException
18+
from .exceptions import (
19+
NoTokenException,
20+
)
1621

1722
logger = logging.getLogger(__name__)
1823

0 commit comments

Comments
 (0)