Remove unnecessary statement
This commit is contained in:
		
							parent
							
								
									6d7b8023c2
								
							
						
					
					
						commit
						f902201702
					
				
					 1 changed files with 0 additions and 4 deletions
				
			
		| 
						 | 
					@ -268,10 +268,6 @@ class IGRAStation(DatabaseTable):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    @staticmethod
 | 
					    @staticmethod
 | 
				
			||||||
    def find_station(db: Database, station: str) -> Self:
 | 
					    def find_station(db: Database, station: str) -> Self:
 | 
				
			||||||
        sql = """
 | 
					 | 
				
			||||||
            select * from xmet_igra_station where code like concat('%', :code)
 | 
					 | 
				
			||||||
        """
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return db.query(IGRAStation,
 | 
					        return db.query(IGRAStation,
 | 
				
			||||||
            clauses = [
 | 
					            clauses = [
 | 
				
			||||||
                "code like concat('%', :code)"
 | 
					                "code like concat('%', :code)"
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue