Skip to content

Commit

Permalink
return index from command payload #921
Browse files Browse the repository at this point in the history
  • Loading branch information
mrlt8 committed Jul 23, 2023
1 parent 015cc12 commit 32fd36f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/wyzebridge/wyze_control.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def pan_to_cruise_point(sess: WyzeIOTCSession, cmd):
return resp | {
"status": "success",
"response": ",".join(map(str, res)) if isinstance(res, bytes) else res,
"value": i,
"value": int(cmd[1]),
}


Expand Down

0 comments on commit 32fd36f

Please sign in to comment.