Skip to content

Commit c471711

Browse files
authored
Fix list comprehension in test
1 parent d1516db commit c471711

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_calibration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def test_DetectorData_from_identifier():
402402
assert agipd[0] == agipd['AGIPD00']
403403
assert agipd.source_names == [
404404
f'SPB_DET_AGIPD1M-1/DET/{i}CH0:xtdf'
405-
for i, name in range(len(agipd.source_names))]
405+
for i in range(len(agipd.source_names))]
406406

407407
# PDU
408408
pdu = agipd[0]

0 commit comments

Comments
 (0)