Skip to content

Commit 0102854

Browse files
authored
Merge: mypy 수정, 파라미터 빼먹은거 수정
[inspection] mypy 수정, 파라미터 빼먹은거 수정
2 parents e8f621c + 709ab5b commit 0102854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/user/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def post(self, request: Request, *args: Any, **kwargs: Any) -> Response:
192192
status=status.HTTP_400_BAD_REQUEST,
193193
)
194194

195-
return self.login_process_user(profile_response.json(), provider_info)
195+
return self.login_process_user(request, profile_response.json(), provider_info)
196196

197197
def get_token(self, code: str, provider_info: dict[str, Any]) -> requests.Response:
198198
return requests.post(

0 commit comments

Comments
 (0)