From e606e82ecb1bf294a0ab6a84b280c597bf51a128 Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Thu, 15 May 2025 16:04:14 -0500 Subject: [PATCH] scripts: plotmpl.py: Fixed -X/--xlim not considering all datasets This was a simple typo. Unfortunately went unnoticed because the lingering dataset assigned in the above for loop made the results look mostly correct. Yay. --- scripts/plotmpl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/plotmpl.py b/scripts/plotmpl.py index b15dba12..0ac77394 100755 --- a/scripts/plotmpl.py +++ b/scripts/plotmpl.py @@ -1100,7 +1100,7 @@ def main(csv_paths, output, *, if y is not None))), xlim_[1] if xlim_[1] is not None else max(it.chain([0], (x - for r in subdatasets.values() + for dataset in subdatasets.values() for x, y in dataset if y is not None)))) ax.set_ylim(