diff options
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() |
