13 lines
273 B
Python
13 lines
273 B
Python
# standard imports
|
|
|
|
# external imports
|
|
|
|
# local imports
|
|
from .base import MetadataRequestsHandler
|
|
|
|
|
|
class PreferencesMetadata(MetadataRequestsHandler):
|
|
|
|
def __init__(self, identifier: bytes):
|
|
super().__init__(cic_type=':cic.preferences', identifier=identifier)
|