Skip to content

Commit

Permalink
Remove unused import statement
Browse files Browse the repository at this point in the history
  • Loading branch information
suecharo committed Oct 8, 2024
1 parent 41da3a9 commit 2ecf2b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ services:
- SAPPORO_DEBUG=True
- SAPPORO_RUN_DIR=${PWD}/run
ports:
- 127.0.0.1:1122:1122
- 127.0.0.1:1123:1122
restart: on-failure
working_dir: /app
command: ["sleep", "infinity"]
command: [ "sleep", "infinity" ]
networks:
- sapporo-dev-network

Expand Down
3 changes: 1 addition & 2 deletions sapporo/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
from fastapi.responses import JSONResponse
from starlette.datastructures import Headers, MutableHeaders
from starlette.exceptions import HTTPException as StarletteHTTPException
from starlette.responses import PlainTextResponse, Response
from starlette.types import ASGIApp, Message, Receive, Scope, Send
from starlette.types import Message, Receive, Scope, Send

from sapporo.auth import get_auth_config
from sapporo.config import (LOGGER, PKG_DIR, add_openapi_info, get_config,
Expand Down

0 comments on commit 2ecf2b1

Please sign in to comment.