From f90220170206734cc8cb0607596ffee8ab4f369e Mon Sep 17 00:00:00 2001 From: XANTRONIX Industrial Date: Sun, 2 Mar 2025 20:04:49 -0500 Subject: [PATCH] Remove unnecessary statement --- lib/xmet/igra.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/xmet/igra.py b/lib/xmet/igra.py index 4bb4e0d..3bfbbeb 100644 --- a/lib/xmet/igra.py +++ b/lib/xmet/igra.py @@ -268,10 +268,6 @@ class IGRAStation(DatabaseTable): @staticmethod def find_station(db: Database, station: str) -> Self: - sql = """ - select * from xmet_igra_station where code like concat('%', :code) - """ - return db.query(IGRAStation, clauses = [ "code like concat('%', :code)"