diff options
| author | root <root@turin.home> | 2022-01-07 19:19:45 +0000 |
|---|---|---|
| committer | root <root@turin.home> | 2022-01-07 19:19:45 +0000 |
| commit | cf70ae6ded332729f0dc2833d6680d7dac8072db (patch) | |
| tree | fc8e5e39cffa07f2635dc0c71379ece34647fd58 /weather.py | |
Commiting basic code
Diffstat (limited to 'weather.py')
| -rw-r--r-- | weather.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/weather.py b/weather.py new file mode 100644 index 0000000..e46fac8 --- /dev/null +++ b/weather.py @@ -0,0 +1,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 |
