Skip to content

Commit 14869a4

Browse files
committed
Fix ruff check
1 parent f5470e2 commit 14869a4

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/climatebenchpress/compressor/plotting/plot_metrics.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,8 @@ def plot_metrics(
127127
"""
128128
metrics_path = basepath / "metrics"
129129
plots_path = basepath / "plots"
130-
datasets = (data_loader_basepath or basepath) / "datasets"
131-
compressed_datasets = basepath / "compressed-datasets"
130+
_datasets = (data_loader_basepath or basepath) / "datasets"
131+
_compressed_datasets = basepath / "compressed-datasets"
132132

133133
df = pd.read_csv(metrics_path / "all_results.csv")
134134

@@ -554,7 +554,6 @@ def _plot_aggregated_rd_curve(
554554
plt.legend(
555555
title="Compressor",
556556
loc="upper left",
557-
# bbox_to_anchor=(0.8, 0.99),
558557
fontsize=12,
559558
title_fontsize=14,
560559
)

0 commit comments

Comments
 (0)