2021-04-14 11:00:10 +02:00
|
|
|
# standard imports
|
|
|
|
|
2021-08-06 18:29:01 +02:00
|
|
|
# external imports
|
2021-04-14 11:00:10 +02:00
|
|
|
|
|
|
|
# local imports
|
|
|
|
from .base import MetadataRequestsHandler
|
|
|
|
|
|
|
|
|
|
|
|
class PersonMetadata(MetadataRequestsHandler):
|
|
|
|
|
|
|
|
def __init__(self, identifier: bytes):
|
2021-05-01 16:52:54 +02:00
|
|
|
super().__init__(cic_type=':cic.person', identifier=identifier)
|