Skip to content

Commit 0afd170

Browse files
committed
fix: [help message] concat instead of assign
1 parent 8b9bfe5 commit 0afd170

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bin/help.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def help():
1515
## Task command
1616
help += help_task(False)
1717

18-
help = "```\n"
18+
help += "```\n"
1919
return help
2020

2121

@@ -41,7 +41,7 @@ def help_case(standalone=True):
4141
help += "case_modify_status: Modify status of the case.\n\t!case_modify_status case_id status_id\n"
4242

4343
if standalone:
44-
help = "```\n"
44+
help += "```\n"
4545

4646
return help
4747

@@ -69,6 +69,6 @@ def help_task(standalone=True):
6969
help += "task_modify_status: Modify status of the task.\n\t!task_modify_status task_id status_id\n"
7070

7171
if standalone:
72-
help = "```\n"
72+
help += "```\n"
7373

7474
return help

0 commit comments

Comments
 (0)