forked from s3lph/matemat
Fixed a line-to-long style error
This commit is contained in:
parent
079d9909c0
commit
a0d1520ecf
1 changed files with 2 additions and 1 deletions
|
@ -34,7 +34,8 @@ _PAGELET_PATHS: Dict[str, Callable[[str, # HTTP method (GET, POST, ...)
|
|||
RequestArguments, # HTTP Request arguments
|
||||
Dict[str, Any], # Session vars
|
||||
Dict[str, str]], # Response headers
|
||||
Tuple[int, Optional[Union[bytes, str]]]]] = dict() # Returns: (status code, response body)
|
||||
# Returns: (status code, response body)
|
||||
Tuple[int, Optional[Union[bytes, str]]]]] = dict()
|
||||
|
||||
|
||||
# Inactivity timeout for client sessions
|
||||
|
|
Loading…
Reference in a new issue