From a0d1520ecfb93cc81711b4cb46b4f203d3398e6e Mon Sep 17 00:00:00 2001 From: s3lph Date: Sun, 8 Jul 2018 15:13:58 +0200 Subject: [PATCH] Fixed a line-to-long style error --- matemat/webserver/httpd.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/matemat/webserver/httpd.py b/matemat/webserver/httpd.py index 3215ad2..2bae715 100644 --- a/matemat/webserver/httpd.py +++ b/matemat/webserver/httpd.py @@ -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