'指摘対応:import修正・呼び出し修正'
This commit is contained in:
parent
5c49c92b6b
commit
6371924bd9
@ -6,6 +6,7 @@
|
||||
"source.organizeImports": true
|
||||
}
|
||||
},
|
||||
// 自身の環境に合わせて変えてください
|
||||
"python.defaultInterpreterPath": "<pythonインタプリターのパス>",
|
||||
"python.linting.lintOnSave": true,
|
||||
"python.linting.enabled": true,
|
||||
|
||||
@ -8,7 +8,7 @@ from src.model.internal.session import UserSession
|
||||
from src.model.view.logout_view_model import LogoutViewModel
|
||||
from src.system_var import constants
|
||||
from src.templates import templates
|
||||
from src.services.session_service import SessionService
|
||||
from src.services import session_service
|
||||
|
||||
router = APIRouter()
|
||||
|
||||
@ -52,6 +52,6 @@ def logout_view(
|
||||
|
||||
# セッション削除
|
||||
if session:
|
||||
SessionService.delete_session(session)
|
||||
session_service.delete_session(session)
|
||||
|
||||
return template_response
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user