16 lines
538 B
Python
16 lines
538 B
Python
"""
|
|
UsUsageParameters model the usage properties for a Us building
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
|
"""
|
|
from usage.usage_feeders.helpers.us_function_to_usage import UsFunctionToUsage
|
|
from usage.usage_feeders.us_base_usage_parameters import UsBaseUsageParameters
|
|
|
|
|
|
class UsUsageParameters(UsBaseUsageParameters):
|
|
"""
|
|
UsUsageParameters class
|
|
"""
|
|
def __init__(self, city):
|
|
super().__init__(city, UsFunctionToUsage.usage)
|