Skip to content

Commit

Permalink
fix: Fix wrong variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
rumpelsepp committed Aug 31, 2022
1 parent 6f2091a commit 632877b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gallia/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ def build_cli(parsers: dict[str, Any], config: dict[str, Any]) -> None:
help=cls.SHORT_HELP,
epilog=cls.EPILOG,
)
scanner = cls(subparser, config)
subparser.set_defaults(run_func=scanner.entry_point)
cmd = cls(subparser, config)
subparser.set_defaults(run_func=cmd.entry_point)


def cmd_show_config(
Expand Down

0 comments on commit 632877b

Please sign in to comment.