v.0.10.0 redesign prj structure, multi dev containers
This commit is contained in:
9
pico-client/classes/weather.py
Normal file
9
pico-client/classes/weather.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from .location import Location
|
||||
from .current_condition import CurrentCondition
|
||||
class Weather:
|
||||
def __init__(self, location: Location, current: CurrentCondition):
|
||||
self.location = location
|
||||
self.current = current
|
||||
|
||||
def __repr__(self):
|
||||
return f'Weather(condition={self.location}, current={self.current}'
|
||||
Reference in New Issue
Block a user