Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cmbant committed Sep 30, 2024
1 parent f1230a4 commit 14d4bca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion getdist/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -2343,7 +2343,7 @@ class SampleNames:
def _add_marker_list(self, markers, ax, marker_args, y=False, color=None):
add_proc = self.add_y_marker if y else self.add_x_marker
if isinstance(marker_args, (list, tuple)):
for marker, marker_arg in zip(markers, marker_args):
for marker, marker_arg in zip(makeList(markers), marker_args):
if color:
marker_arg['color'] = color
add_proc(marker, ax=ax, **marker_arg)
Expand Down

0 comments on commit 14d4bca

Please sign in to comment.