summaryrefslogtreecommitdiff
path: root/weather.py
blob: e46fac84d047cba98579b4622b9a1090812d04d7 (plain)
1
2
3
4
5
6
7
8
9
class weather:
    def __init__(self):
        self.temp = 0
    def get_temp(self):
        #update temp 
        pass
    def temperature(self):
        self.get_temp()
        return self.temp