Commits

Kana Sugimoto authored d6d73bd68b5
PIPE-2187: Fixing a couple of formatting issues.

pipeline/hsd/tasks/skycal/qa.py

Modified
43 43
44 44 def handle(self, context: 'Context', result: skycal.SDSkyCalResults) -> None:
45 45 """Evaluate QA score for a list of skycal results.
46 46
47 47 Args:
48 48 context: Pipeline context (not used).
49 49 result: List of SDSkyCalResults instances.
50 50 """
51 51 # collate the QAScores from each child result, pulling them into our
52 52 # own QAscore list
53 - collated = utils.flatten([r.qa.pool for r in result])
53 + collated = utils.flatten([r.qa.pool for r in result])
54 54 result.qa.pool[:] = collated
55 55
56 56 aqua_exporter = aqua.xml_generator_for_metric('OnOffElevationDifference', '{:0.3f}deg')
57 57 aqua.register_aqua_metric(aqua_exporter)

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut