Skip to content

Commit

Permalink
Merge pull request #28 from zevlee/fix/cli-launch
Browse files Browse the repository at this point in the history
fix: Fix the CLI launch options
  • Loading branch information
zevlee authored Jan 22, 2025
2 parents 4c62d23 + 8833417 commit 1025f3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fightsticker/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ def __init__(self, *args, **kwargs):
args = argv[1:]
option = parser.parse_args(args)
if option.TRADITIONAL:
main_traditional()
main("traditional")
elif option.LEVERLESS:
main_leverless()
main("leverless")

def _launch(self):
match self.option_var.get():
Expand Down

0 comments on commit 1025f3f

Please sign in to comment.