Skip to content

Commit

Permalink
Rewrite as a literal
Browse files Browse the repository at this point in the history
Signed-off-by: Shintaro Sakoda <[email protected]>
  • Loading branch information
SakodaShintaro committed Feb 27, 2025
1 parent de479bb commit b1261eb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def parse_Int32Stamped(msg):
def parse_MarkerArray(msg):
result_dict = {}
result_dict["timestamp"] = parse_stamp(msg.markers[0].header.stamp)
result_dict["marker"] = list()
result_dict["marker"] = []
for marker_msg in msg.markers:
one_marker = {}
one_marker["timestamp"] = parse_stamp(marker_msg.header.stamp)
Expand Down

0 comments on commit b1261eb

Please sign in to comment.