Skip to content

Commit

Permalink
style(pre-commit): autofix
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] committed Mar 5, 2024
1 parent 154749b commit 55f920b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def check_rosbag(duration: float, topic_name_to_msg_list: dict, required_fps: di
"count": [len(msg_list) for msg_list in topic_name_to_msg_list.values()],
}
)
df = df[df['topic'].isin(required_fps.keys())]
df = df[df["topic"].isin(required_fps.keys())]
df["fps"] = df["count"] / duration
df["enough_fps"] = df["fps"] > df["topic"].map(required_fps)
print(df)
Expand Down

0 comments on commit 55f920b

Please sign in to comment.