Skip to content

Commit

Permalink
Add header comment for main()
Browse files Browse the repository at this point in the history
  • Loading branch information
tysmith committed Sep 4, 2024
1 parent 7416fce commit 4a11b06
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/ffpuppet/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,12 @@ def parse_args(argv: list[str] | None = None) -> Namespace:
return args


def main(argv: list[str] | None = None) -> None: # pylint: disable=missing-docstring
def main(argv: list[str] | None = None) -> None:
"""
FFPuppet main entry point
Run with --help for usage
"""
args = parse_args(argv)
# set output verbosity
if args.log_level == DEBUG:
Expand Down

0 comments on commit 4a11b06

Please sign in to comment.