Used wrong query term beacuse self. was missing

🤦, querying for a method does not work obviously
This commit is contained in:
JuliusFreudenberger 2019-10-16 14:18:40 +02:00
parent 97f87cc9cc
commit ce24dec0c2

2
bot.py
View file

@ -34,7 +34,7 @@ class Query:
if args[0].isdigit():
self.station_id = args[0].strip()
else:
self.station_id = search_station(input)
self.station_id = search_station(self.input)
def start(update):