Skip to content

Commit

Permalink
Flip export tracks option
Browse files Browse the repository at this point in the history
  • Loading branch information
briemla committed May 21, 2024
1 parent 5ea1f6b commit 1e358ad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OTAnalytics/plugin_parser/argparse_cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ def _setup(self) -> None:
required=False,
)
self._parser.add_argument(
"--track-export",
action="store_false",
help="Export tracks as csv",
"--no-track-export",
action="store_true",
help="Do not export tracks as csv",
required=False,
)
self._parser.add_argument(
Expand Down Expand Up @@ -149,7 +149,7 @@ def parse(self) -> CliArguments:
save_suffix=args.save_suffix,
event_formats=args.event_formats,
count_intervals=args.count_intervals,
track_export=args.track_export,
track_export=not args.no_track_export,
num_processes=args.num_processes,
log_file=args.logfile,
include_classes=args.include_classes,
Expand Down

0 comments on commit 1e358ad

Please sign in to comment.