diff options
| author | Alex Schofield <git@ajschof.me> | 2026-05-04 23:21:18 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2026-05-04 23:21:18 +0100 |
| commit | dbdc06cab87218246ee567dc180b09cd483a950e (patch) | |
| tree | ab4a3176fa9bf8caaabefe054fab701e246eb2a4 /fnme/cli.py | |
| parent | 962e2e57fe16e51b03e9fbd6d4b9de626e01b49b (diff) | |
| download | fuelnearme-dbdc06cab87218246ee567dc180b09cd483a950e.tar.gz fuelnearme-dbdc06cab87218246ee567dc180b09cd483a950e.zip | |
ruff auto fix (UP035/UP006/F401)
Diffstat (limited to 'fnme/cli.py')
| -rw-r--r-- | fnme/cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnme/cli.py b/fnme/cli.py index 3d7d72e..7c0d49d 100644 --- a/fnme/cli.py +++ b/fnme/cli.py @@ -1,6 +1,6 @@ import argparse import sys -from typing import Any, Dict, List +from typing import Any from tabulate import tabulate @@ -36,7 +36,7 @@ def _fmt_price(v: float | None) -> str: return f"{v:.2f}" if v is not None else "N/A" -def output_stations(stations: List[Dict[str, Any]]) -> None: +def output_stations(stations: list[dict[str, Any]]) -> None: if not stations: print("[*] No stations found.") return |
