(vid: cv2.VideoCapture, ser: serial.Serial)
| 234 | |
| 235 | def do(*actions: Action) -> Action: |
| 236 | def do_impl(vid: cv2.VideoCapture, ser: serial.Serial) -> None: |
| 237 | for action in actions: |
| 238 | action(vid, ser) |
| 239 | return do_impl |
| 240 | |
| 241 |
nothing calls this directly
no outgoing calls
no test coverage detected