From 758cdfbbb625ce6ac09361ea633f7480fccd11e7 Mon Sep 17 00:00:00 2001 From: Sven Augustin Date: Fri, 5 Jun 2026 12:32:19 +0200 Subject: [PATCH] removed return value --- stand/api.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/stand/api.py b/stand/api.py index 847bbcf..11c6b21 100644 --- a/stand/api.py +++ b/stand/api.py @@ -51,12 +51,8 @@ def append_run(beamline: Beamline, pgroup: PGroup, run: int, entries: dict[str, row = {"run": run, **row} # setdefault would not force run to be the first column - res = [] for grid in grids[pgroup]: grid.append(row) - res.append(grid.options) - - return res