pep8: Add compliance with rule E261 tools/run-dev.py.

This commit is contained in:
Aditya Bansal
2017-07-09 05:04:59 +05:30
committed by Tim Abbott
parent 73ad834129
commit 44edab1cff
2 changed files with 2 additions and 3 deletions

View File

@@ -100,7 +100,7 @@ if options.interface is None:
elif options.interface == "":
options.interface = None
runserver_args = [] # type: List[str]
runserver_args = [] # type: List[str]
base_port = 9991
if options.test:
base_port = 9981
@@ -227,7 +227,7 @@ class BaseWebsocketHandler(WebSocketHandler):
# type: (*Any, **Any) -> None
super(BaseWebsocketHandler, self).__init__(*args, **kwargs)
# define client for target websocket server
self.client = None # type: Any
self.client = None # type: Any
def get(self, *args, **kwargs):
# type: (*Any, **Any) -> Optional[Callable]