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