diff options
| author | Alex Schofield <git@ajschof.me> | 2026-05-03 19:55:31 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2026-05-03 19:55:31 +0100 |
| commit | 4264ced9fa14b689acc18169b2c1cae72d3ce667 (patch) | |
| tree | 93fd19349e0f60ca4d8708ead9014a3cb9e9c50a /fnme/cli.py | |
| parent | d0e905285691d73f2cf7e45a88dbadf631620f0a (diff) | |
| download | fuelnearme-4264ced9fa14b689acc18169b2c1cae72d3ce667.tar.gz fuelnearme-4264ced9fa14b689acc18169b2c1cae72d3ce667.zip | |
fix import paths & update pyproject.toml
Diffstat (limited to 'fnme/cli.py')
| -rw-r--r-- | fnme/cli.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fnme/cli.py b/fnme/cli.py index d93d9f4..d9ef508 100644 --- a/fnme/cli.py +++ b/fnme/cli.py @@ -2,12 +2,13 @@ import argparse import sys from typing import Any, Dict, List -from constants import SORT_KV -from data import get_latest_data -from geo import get_location -from station import filter_df, sort_stations from tabulate import tabulate +from fnme.constants import SORT_KV +from fnme.data import get_latest_data +from fnme.geo import get_location +from fnme.station import filter_df, sort_stations + def parse_args() -> argparse.Namespace: parser = argparse.ArgumentParser() |
