Skip to content

Commit 74760f9

Browse files
committed
Address review comments
1 parent 2e5a2f1 commit 74760f9

File tree

1 file changed

+12
-14
lines changed

1 file changed

+12
-14
lines changed

ratapi/utils/plotting.py

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -198,15 +198,14 @@ def plot_ref_sld_helper(
198198
sld_min, sld_max = confidence_intervals["sld"][i][j]
199199
sld_plot.fill_between(plot_data["sld"][i][j][0], sld_min, sld_max, alpha=0.6, color="grey")
200200

201-
if plot_data["sld_resample"] and plot_data["sld_resample"][i]:
202-
for j in range(len(plot_data["sld_resample"][i])):
203-
sld_plot.plot(
204-
plot_data["sld_resample"][i][j][0],
205-
plot_data["sld_resample"][i][j][1],
206-
color=color,
207-
linewidth=1,
208-
animated=animated,
209-
)
201+
for j in range(len(plot_data["sld_resample"][i])):
202+
sld_plot.plot(
203+
plot_data["sld_resample"][i][j][0],
204+
plot_data["sld_resample"][i][j][1],
205+
color=color,
206+
linewidth=1,
207+
animated=animated,
208+
)
210209

211210
# Format the axis
212211
ref_plot.set_yscale("log")
@@ -544,11 +543,10 @@ def update_foreground(self, data):
544543
self.figure.axes[1].draw_artist(self.figure.axes[1].lines[i])
545544
i += 1
546545

547-
if plot_data["sld_resample"] and plot_data["sld_resample"][j]:
548-
for resampled in plot_data["sld_resample"][j]:
549-
self.figure.axes[1].lines[i].set_data(resampled[0], resampled[1])
550-
self.figure.axes[1].draw_artist(self.figure.axes[1].lines[i])
551-
i += 1
546+
for resampled in plot_data["sld_resample"][j]:
547+
self.figure.axes[1].lines[i].set_data(resampled[0], resampled[1])
548+
self.figure.axes[1].draw_artist(self.figure.axes[1].lines[i])
549+
i += 1
552550

553551
for i, container in enumerate(self.figure.axes[0].containers):
554552
self.adjust_error_bar(

0 commit comments

Comments
 (0)