Skip to content

Commit

Permalink
make flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
aliddell committed Dec 13, 2023
1 parent f4a573d commit ff23b80
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/test_basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ def took_too_long():
packet = a.get_frame_count()
for f in a.frames():
logging.info(
f"{f.data().shape} {f.data()[0][0][0][0]} {f.metadata()}"
f"{f.data().shape} {f.data()[0][0][0][0]} "
+ f"{f.metadata()}"
)
nframes += packet
logging.info(
Expand Down Expand Up @@ -328,7 +329,8 @@ def is_not_done() -> bool:
frame.metadata().frame_id == expected_frame_id
), (
"frame id's didn't match "
+ f"({frame.metadata().frame_id}!={expected_frame_id})"
+ f"({frame.metadata().frame_id}"
+ f"!={expected_frame_id})"
+ f" [stream {stream_id} nframes {nframes}]"
)
nframes[stream_id] += n
Expand Down

0 comments on commit ff23b80

Please sign in to comment.