14 lines
323 B
Python
14 lines
323 B
Python
# standard imports
|
|
|
|
# external imports
|
|
from cic_types.condiments import MetadataPointer
|
|
|
|
# local imports
|
|
from .base import UssdMetadataHandler
|
|
|
|
|
|
class PreferencesMetadata(UssdMetadataHandler):
|
|
|
|
def __init__(self, identifier: bytes):
|
|
super().__init__(cic_type=MetadataPointer.PREFERENCES, identifier=identifier)
|