Skip to content

Commit

Permalink
fixed typo in argparse namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
tgalvin committed Dec 29, 2024
1 parent 5b2737f commit 06a9e7e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions flint/archive.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def cli() -> None:
strategy_yaml_path=args.strategy_yaml_path
)
)
if args.strategy_from_path
if args.strategy_yaml_path
else create_options_from_parser(
parser_namespace=args, options_class=ArchiveOptions
)
Expand All @@ -354,7 +354,7 @@ def cli() -> None:
strategy_yaml_path=args.strategy_yaml_path
)
)
if args.strategy_from_path
if args.strategy_yaml_path
else create_options_from_parser(
parser_namespace=args, options_class=ArchiveOptions
)
Expand All @@ -379,7 +379,7 @@ def cli() -> None:
strategy_yaml_path=args.strategy_yaml_path
)
)
if args.strategy_from_path
if args.strategy_yaml_path
else create_options_from_parser(
parser_namespace=args, options_class=ArchiveOptions
)
Expand Down

0 comments on commit 06a9e7e

Please sign in to comment.