diff options
| author | Alex Schofield <git@ajschof.me> | 2026-05-04 20:58:05 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2026-05-04 20:58:05 +0100 |
| commit | 754f7dc26ddc82a11c45a114cbdd49c17786ae7b (patch) | |
| tree | 28ba577fbcade97848819b71832df97b54151720 /fnme/cli.py | |
| parent | 683d05d4f77d1ddf0d753c627610aed0f1a4eaae (diff) | |
| download | fuelnearme-754f7dc26ddc82a11c45a114cbdd49c17786ae7b.tar.gz fuelnearme-754f7dc26ddc82a11c45a114cbdd49c17786ae7b.zip | |
remove arg radius parsing from process_stations()
Diffstat (limited to 'fnme/cli.py')
| -rw-r--r-- | fnme/cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fnme/cli.py b/fnme/cli.py index 385af76..aa49ec1 100644 --- a/fnme/cli.py +++ b/fnme/cli.py @@ -49,7 +49,7 @@ def main(): print(f"Last updated: {last_modified}") - df_filtered = process_stations(df, args, location) + df_filtered = process_stations(df, args.radius, location) sorted_stations_list = sort_stations(df_filtered, args.sort) |
