Skip to content

Commit

Permalink
Test removing position for redis streams input error.
Browse files Browse the repository at this point in the history
  • Loading branch information
dspeck1 committed Dec 23, 2024
1 parent 3198ea4 commit 6c8d124
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 6c8d124

Please sign in to comment.