fix: Remove unused blue_points variable

This commit is contained in:
Paul Gauthier (aider) 2024-08-14 06:28:28 -07:00
parent a7290be843
commit fb0b348bec

View file

@ -62,7 +62,6 @@ def plot_over_time(yaml_file):
orange_points = [(d, r) for d, r, c in zip(dates, pass_rates, colors) if c == "orange"]
red_points = [(d, r) for d, r, c in zip(dates, pass_rates, colors) if c == "red"]
green_points = [(d, r) for d, r, c in zip(dates, pass_rates, colors) if c == "green"]
blue_points = [(d, r) for d, r, c in zip(dates, pass_rates, colors) if c == "blue"]
# Plot lines for orange, red, and green points
if orange_points: