💄 make pycharm happy with explicit return

This commit is contained in:
Joe Kaufeld 2025-06-11 22:19:09 -04:00
parent cf1a248538
commit b5acd932b7

View file

@ -36,6 +36,7 @@ def get_http_status_by_code(code: int) -> Optional[str]:
resp = HTTPStatus(code)
if resp:
return f"{resp.value} {resp.phrase}"
return None
def is_form_request(request: "Request") -> bool: