Skip to content
Snippets Groups Projects

[EPIX100][PNCCD][CORRECT] Display creation time for retrieved constants

Merged Karim Ahmed requested to merge fix/show_constants_creation_time into master
All threads resolved!
1 file
+ 7
3
Compare changes
  • Side-by-side
  • Inline
@@ -532,9 +532,13 @@ class CalibrationData:
Returns:
DICT: mapping module to physical detector unit name.
"""
return {mod: pdu_md["physical_name"] for mod, pdu_md in self._api.physical_detector_units(
self.detector["id"], self.pdu_snapshot_at, self.module_naming
).items()}
return {
mod: pdu_md["physical_name"] for mod, pdu_md in self._api.physical_detector_units( # noqa
self.detector["id"],
self.pdu_snapshot_at,
self.module_naming,
).items()
}
@property
def condition(self):
Loading