From dbdc06cab87218246ee567dc180b09cd483a950e Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Mon, 4 May 2026 23:21:18 +0100 Subject: ruff auto fix (UP035/UP006/F401) --- fnme/cli.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'fnme/cli.py') 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 -- cgit v1.2.3