Skip to content

Commit 934b72b

Browse files
committed
t3: Fix list syntax
Change-Id: If5f58f1f063aa0c3b368b935b494755b42c2dedc
1 parent 6faeec7 commit 934b72b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

majavahbot/tasks/task_3_bot_status.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def format_extra_details(self) -> str:
193193
details.append(self.blocks[0].format())
194194
else:
195195
details.append(
196-
"\n".join([f"* {block.format()}" for block in self.blocks])
196+
"".join([f"\n* {block.format()}" for block in self.blocks])
197197
)
198198

199199
return "\n----\n".join(details)

0 commit comments

Comments
 (0)