fixing some missing types
This commit is contained in:
parent
f387ab6c6c
commit
4c7dfaffa6
|
@ -44,7 +44,7 @@ class ServiceTaskDelegate:
|
||||||
return value
|
return value
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def get_message_for_status(code):
|
def get_message_for_status(code: int) -> str:
|
||||||
"""Given a code like 404, return a string like 'The requested resource was not found.'"""
|
"""Given a code like 404, return a string like 'The requested resource was not found.'"""
|
||||||
msg = f"HTTP Status Code {code}."
|
msg = f"HTTP Status Code {code}."
|
||||||
if code == 301:
|
if code == 301:
|
||||||
|
|
Loading…
Reference in New Issue