Skip to content

Commit

Permalink
Remove unused type: ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle committed Mar 26, 2024
1 parent 27e62b8 commit cc47449
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npc_mvr/mvr.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ def augmented_camera_info(self) -> dict[CameraName, dict[str, Any]]:
camera_info["signature_exposure_duration"] = np.round(
np.median(signature_exposures), 3
)
camera_info["lost_frame_percentage"] = 100 * camera_info["FramesLostCount"] / camera_info["FramesRecorded"] # type: ignore[operator]
camera_info["lost_frame_percentage"] = 100 * camera_info["FramesLostCount"] / camera_info["FramesRecorded"]
augmented_camera_info[camera_name] = camera_info
return augmented_camera_info

Expand Down

0 comments on commit cc47449

Please sign in to comment.