11 lines
273 B
Python
11 lines
273 B
Python
from chains.cerberus_web_client import CerberusWebClient
|
|
from supermarket_chain import SupermarketChain
|
|
|
|
|
|
class StopMarket(CerberusWebClient, SupermarketChain):
|
|
_date_hour_format = '%Y-%m-%d %H:%M:%S'
|
|
|
|
@property
|
|
def username(self):
|
|
return 'Stop_Market'
|