(self, engine_identity_model: IdentityModel)
| 30 | dynamo_wrapper = DynamoIdentityWrapper() |
| 31 | |
| 32 | def __init__(self, engine_identity_model: IdentityModel): |
| 33 | self.engine_identity_model = engine_identity_model |
| 34 | self._reset_initial_state() # type: ignore[no-untyped-call] |
| 35 | |
| 36 | @classmethod |
| 37 | def from_identity_document(cls, identity_document: dict) -> "EdgeIdentity": # type: ignore[type-arg] |
nothing calls this directly
no test coverage detected