Skip to content

Commit 2ecf2b1

Browse files
committed
Remove unused import statement
1 parent 41da3a9 commit 2ecf2b1

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

compose.dev.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ services:
1919
- SAPPORO_DEBUG=True
2020
- SAPPORO_RUN_DIR=${PWD}/run
2121
ports:
22-
- 127.0.0.1:1122:1122
22+
- 127.0.0.1:1123:1122
2323
restart: on-failure
2424
working_dir: /app
25-
command: ["sleep", "infinity"]
25+
command: [ "sleep", "infinity" ]
2626
networks:
2727
- sapporo-dev-network
2828

sapporo/app.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
from fastapi.responses import JSONResponse
1111
from starlette.datastructures import Headers, MutableHeaders
1212
from starlette.exceptions import HTTPException as StarletteHTTPException
13-
from starlette.responses import PlainTextResponse, Response
14-
from starlette.types import ASGIApp, Message, Receive, Scope, Send
13+
from starlette.types import Message, Receive, Scope, Send
1514

1615
from sapporo.auth import get_auth_config
1716
from sapporo.config import (LOGGER, PKG_DIR, add_openapi_info, get_config,

0 commit comments

Comments
 (0)