From 6c8d124ea843df4a2717a0bd33c5a51b50a0d085 Mon Sep 17 00:00:00 2001 From: dspeck1 Date: Mon, 23 Dec 2024 15:15:27 -0600 Subject: [PATCH] Test removing position for redis streams input error. --- src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.py b/src/main.py index 06333cd..ad7fe48 100644 --- a/src/main.py +++ b/src/main.py @@ -32,7 +32,7 @@ class NextVisitModel: groupId: str coordinateSystem: int #position: typing.List[int] - position: str #TODO check if list allowed after testing. + #position: str #TODO check if list allowed after testing. startTime: float rotationSystem: int cameraAngle: float @@ -294,7 +294,7 @@ async def main() -> None: coordinateSystem=next_visit_message_initial["message"][ "coordinateSystem" ], - position=next_visit_message_initial["message"]["position"], + #position=next_visit_message_initial["message"]["position"], startTime=next_visit_message_initial["message"]["startTime"], rotationSystem=next_visit_message_initial["message"][ "rotationSystem"