Skip to content

Commit c2357fb

Browse files
minor: change method docstring
this is apparently what click uses as the program description in the help menu
1 parent 8f5e883 commit c2357fb

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

scripts/__main__.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ def run_script(module_name: str, *args, **kwargs) -> None:
3535
@click.group()
3636
@click.help_option("-h", "--help")
3737
def cli() -> None:
38-
"""Click group for the command wrapper."""
38+
"""
39+
Custom scripts which help modmail development.
40+
41+
All custom scripts should be listed below as a command, with a description.
42+
In addition, some built in modules may be listed below as well.
43+
If a custom script is not shown below please open an issue.
44+
"""
3945
pass
4046

4147

0 commit comments

Comments
 (0)