Source code for prereise.cli.data_sources.demand_data
from prereise.cli.data_sources.data_source import NotSupportedDataSource
[docs]class DemandData(NotSupportedDataSource):
@property
def command_name(self):
"""See :py:func:`prereise.cli.data_sources.data_source.DataSource.command_name`
:return: (*str*) -- command name
"""
return "demand_data"