some typos fixed

This commit is contained in:
Pilar 2021-06-02 10:55:04 -04:00
parent 40a52e3966
commit 2f0da19293
5 changed files with 6 additions and 9 deletions

View File

@ -19,7 +19,7 @@ class ConcordiaEnergySensor(Sensor):
self._interval = 5
self._interval_units = 'minutes'
self._type = 'ConcordiaEnergySensor'
self._units = 'kWh'
self._units = 'kW'
self._measures = pd.DataFrame(columns=["Date time", "Energy consumption"])
@property
@ -34,7 +34,6 @@ class ConcordiaEnergySensor(Sensor):
def measures(self):
self._measures.drop = None
def add_period(self, measures):
"""
Add or update a period measures to the dataframe

View File

@ -5,7 +5,7 @@
"TOTKWEV-MB.IC"]
},
{ "building" : "GM",
"sensors": ["MDICOR.GM", "MDI.001-650.IC"]
"sensors": ["MDICOR.GM"]
}
]
}

View File

@ -71,7 +71,6 @@ class ConcordiaEnergyConsumption:
sensor.add_period(building_energy_consumption)
building.sensors.append(sensor)
@staticmethod
def clean_line(line):
return line.replace('"', '').replace('\n', '')

View File

@ -11,7 +11,6 @@ from city_model_structure.building import Building
from imports.sensors_factory import SensorsFactory
class TestSensorsFactory(TestCase):
"""
TestSchedulesFactory TestCase