Skip to content

Commit

Permalink
Removed redundant calls to str() and float() which were there for deb…
Browse files Browse the repository at this point in the history
…ugging
  • Loading branch information
cplee1 committed Sep 8, 2023
1 parent fdde3e7 commit 4c57cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/build_plotting_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def create_ref_marker_combinations(psrs, args):

ref_markers = {}
for i, ref in enumerate(unique_refs):
ref_markers[str(ref)] = [str(markers[i][1]), str(markers[i][2]), float(markers[i][3])]
ref_markers[ref] = [markers[i][1], markers[i][2], markers[i][3]]

return markers, ref_markers

Expand Down

0 comments on commit 4c57cb2

Please sign in to comment.