ruff: Fix PLR1711 Useless return
statement at end of function.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
parent
54263e5d52
commit
192024ebc7
3 changed files with 0 additions and 3 deletions
|
@ -23,7 +23,6 @@ class HelloWorldHandler:
|
|||
|
||||
emoji_name = "wave"
|
||||
bot_handler.react(message, emoji_name)
|
||||
return
|
||||
|
||||
|
||||
handler_class = HelloWorldHandler
|
||||
|
|
|
@ -21,7 +21,6 @@ class HelloWorldHandler:
|
|||
|
||||
emoji_name = "wave"
|
||||
bot_handler.react(message, emoji_name)
|
||||
return
|
||||
|
||||
|
||||
handler_class = HelloWorldHandler
|
||||
|
|
|
@ -484,7 +484,6 @@ class GameAdapter:
|
|||
values = [str(stat[key]) for key in raw_headers]
|
||||
response += " | ".join(values)
|
||||
self.send_reply(message, response)
|
||||
return
|
||||
|
||||
def get_sorted_player_statistics(self) -> List[Tuple[str, Dict[str, int]]]:
|
||||
players = []
|
||||
|
|
Loading…
Add table
Reference in a new issue