Skip to content
Snippets Groups Projects
Commit 944b162d authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Make yapf

parent f22e0d5b
No related branches found
No related tags found
No related merge requests found
Pipeline #14565 canceled
......@@ -418,13 +418,16 @@ class TestGetChannelFlags_Issue59(unittest.TestCase):
Entry = namedtuple("Entry", fieldnames)
with open(
data_path("online/KM3NeT_00000049_00008456.summaryslice-167941.txt")
data_path(
"online/KM3NeT_00000049_00008456.summaryslice-167941.txt")
) as fobj:
ref_entries = [Entry(*list(l.strip().split())) for l in fobj.readlines()]
ref_entries = [
Entry(*list(l.strip().split())) for l in fobj.readlines()
]
r = OnlineReader(
data_path("online/KM3NeT_00000049_00008456.summaryslice-167941.root")
)
data_path(
"online/KM3NeT_00000049_00008456.summaryslice-167941.root"))
summaryslice = r.summaryslices.slices[0]
for ours, ref in zip(summaryslice, ref_entries):
......
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