Skip to content

Commit

Permalink
fixup! Implement the Correlator special suite
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesWrigley committed Feb 16, 2022
1 parent 97f63ad commit 46086ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion extra_foam/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def rich_output(x, xlabel="x", ylabel="y", title=None, max_points=None, **kwargs
full_data = [x]
y_series_labels = xr_attrs["y_series_labels"]
for key, data in kwargs.items():
if re.fullmatch("y(\d+)?", key):
if re.fullmatch(r"y(\d+)?", key):
if isinstance(data, Series):
label = data.name if data.name else key
y_series_labels.append(label)
Expand Down

0 comments on commit 46086ae

Please sign in to comment.