Skip to content

Commit 454dc9b

Browse files
committed
Remove extra newline in help message
1 parent f4df21e commit 454dc9b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/alicechess/__main__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
_players_str = ("\n" + (" " * 4)).join(PLAYERS.keys())
2121
USAGE_FIRST_LINE = "Usage: python -m alicechess [WHITE] [BLACK]"
22-
USAGE = f"""\
22+
USAGE = f"""
2323
{USAGE_FIRST_LINE}
2424
2525
{__doc__.strip()}
@@ -28,7 +28,7 @@
2828
2929
Accepted players:
3030
{_players_str}
31-
"""
31+
""".strip()
3232

3333
# ======================================================================
3434

0 commit comments

Comments
 (0)