File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -141,15 +141,15 @@ class SensorData(
141
141
outputs : na .ScalarArray = dataclasses .MISSING
142
142
"""The underlying array storing the image data."""
143
143
144
- axis_x : str = dataclasses .MISSING
144
+ camera : AbstractCamera = dataclasses .MISSING
145
+ """A model of the sensor used to capture these images."""
146
+
147
+ axis_x : str = dataclasses .field (default = "detector_x" , kw_only = True )
145
148
"""The name of the horizontal axis."""
146
149
147
- axis_y : str = dataclasses .MISSING
150
+ axis_y : str = dataclasses .field ( default = "detector_y" , kw_only = True )
148
151
"""The name of the vertical axis."""
149
152
150
- camera : AbstractCamera = dataclasses .MISSING
151
- """A model of the sensor used to capture these images."""
152
-
153
153
@classmethod
154
154
def from_fits (
155
155
cls ,
You can’t perform that action at this time.
0 commit comments