You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def __init__(self, name='Lovel', surname='Kukuljan', username='lk', password='lk', weather_station='Zagreb-Grič'): #predefined user and weather station location
self.name = name
self.surname = surname
self.username = username
self.password = password
self.weather_station = weather_station
def check_user(self, username, password):
if self.username == username and self.password == password: