We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1413a6 commit e7464f4Copy full SHA for e7464f4
src/layers/domain/repository/device_repository/v1.py
@@ -408,9 +408,7 @@ def handle_DeviceReferenceDataIdAddedEvent(
408
def handle_QuestionnaireResponseUpdatedEvent(
409
self, event: QuestionnaireResponseUpdatedEvent
410
) -> TransactItem:
411
- data = asdict(event)
412
- data.pop("id")
413
- return self.update_indexes(id=event.id, keys=[], data=data)
+ return self.handle_DeviceUpdatedEvent(event=event)
414
415
def handle_bulk(self, item: dict) -> list[dict]:
416
parent_key = (item["product_team_id"], item["product_id"])
0 commit comments