Skip to content
Snippets Groups Projects
Commit b0f5fa02 authored by Adam Edward Barton's avatar Adam Edward Barton
Browse files

Merge branch 'master-dq-hancool' into 'master'

Small but urgent bugfix for DQ hancool

See merge request atlas/athena!47726
parents 5413d7f7 2d91c4ee
No related branches found
No related tags found
No related merge requests found
...@@ -103,7 +103,7 @@ def decodeBlack(mask, defects=False): ...@@ -103,7 +103,7 @@ def decodeBlack(mask, defects=False):
dm = eformat.helper.DetectorMask(mask) dm = eformat.helper.DetectorMask(mask)
rv = [] rv = []
dmap = detmaskmap if not defects else detmaskmap_defects dmap = detmaskmap if not defects else detmaskmap_defects
for keys, value in sorted(dmap.items()): for keys, value in dmap.items():
if isinstance(keys, str): if isinstance(keys, str):
keys = [keys] keys = [keys]
if reduce(operator.and_, if reduce(operator.and_,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment