From f53cf134865cddb34fa31baee97f64179cd02e23 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 14 Jan 2024 00:50:12 +0200 Subject: [PATCH] Simplify, we're passing all args --- src/stravavis/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stravavis/cli.py b/src/stravavis/cli.py index f691f0d..df70923 100644 --- a/src/stravavis/cli.py +++ b/src/stravavis/cli.py @@ -156,7 +156,7 @@ def main(): args.max_dist, fig_height, fig_width, - output_file=outfile, + outfile, ) print(f"Saved to {outfile}") @@ -171,7 +171,7 @@ def main(): args.local_timezone, fig_height, fig_width, - output_file=outfile, + outfile, ) print(f"Saved to {outfile}")