Skip to content

Commit ca1f704

Browse files
committed
Remove dead variable
1 parent deaf0a8 commit ca1f704

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

validphys2/src/validphys/results.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def data_index(data):
242242
procs_data = collect("data", ("group_dataset_inputs_by_process",))
243243

244244

245-
def groups_index(groups_data, diagonal_basis=True):
245+
def groups_index(groups_data):
246246
"""Return a pandas.MultiIndex with levels for group, dataset and point
247247
respectively, the group is determined by a key in the dataset metadata, and
248248
controlled by `metadata_group` key in the runcard.
@@ -275,8 +275,8 @@ def groups_index(groups_data, diagonal_basis=True):
275275
return df.index
276276

277277

278-
def experiments_index(experiments_data, diagonal_basis=True):
279-
return groups_index(experiments_data, diagonal_basis)
278+
def experiments_index(experiments_data):
279+
return groups_index(experiments_data)
280280

281281

282282
def procs_index(procs_data):

0 commit comments

Comments
 (0)