cleanup: Fix whitespace around parameter equals.

Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
This commit is contained in:
Anders Kaseorg 2020-04-18 17:16:37 -07:00 committed by Tim Abbott
parent 562fe610b7
commit 6f40bcf745
20 changed files with 70 additions and 70 deletions

View file

@ -42,7 +42,7 @@ class StubBotHandler:
return self.message_server.send(message)
def send_reply(self, message: Dict[str, Any], response: str,
widget_content: Optional[str]=None) -> Dict[str, Any]:
widget_content: Optional[str] = None) -> Dict[str, Any]:
response_message = dict(
content=response,
widget_content=widget_content
@ -63,10 +63,10 @@ class StubBotHandler:
class BotQuitException(Exception):
pass
def quit(self, message: str="") -> None:
def quit(self, message: str = "") -> None:
raise self.BotQuitException()
def get_config_info(self, bot_name: str, optional: bool=False) -> Dict[str, Any]:
def get_config_info(self, bot_name: str, optional: bool = False) -> Dict[str, Any]:
return {}
def unique_reply(self) -> Dict[str, Any]: