Remove unnecessary statement

This commit is contained in:
XANTRONIX 2025-03-02 20:04:49 -05:00
parent 6d7b8023c2
commit f902201702

View file

@ -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)"