@@ -121,7 +121,7 @@ def calibrateImage(self, maskedImage, includeScaleUncertainty=_UnsetEnum.UNSET):
121
121
maskedImage : `lsst.afw.image.MaskedImage`
122
122
The masked image to calibrate.
123
123
includeScaleUncertainty : `bool`, optional
124
- Deprecated and ignored; will be removed after v30 .
124
+ Deprecated and ignored; will be removed after v29 .
125
125
126
126
Returns
127
127
------
@@ -131,7 +131,7 @@ def calibrateImage(self, maskedImage, includeScaleUncertainty=_UnsetEnum.UNSET):
131
131
if includeScaleUncertainty is not _UnsetEnum .UNSET :
132
132
warnings .warn (
133
133
"The 'includeScaleUncertainty' argument to calibrateImage is deprecated and does "
134
- "nothing. It will be removed after v30 ." ,
134
+ "nothing. It will be removed after v29 ." ,
135
135
category = FutureWarning
136
136
)
137
137
return self ._calibrateImage (maskedImage )
@@ -149,7 +149,7 @@ def uncalibrateImage(self, maskedImage, includeScaleUncertainty=_UnsetEnum.UNSET
149
149
maskedImage : `lsst.afw.image.MaskedImage`
150
150
The masked image with pixel units of nJy to uncalibrate.
151
151
includeScaleUncertainty : `bool`, optional
152
- Deprecated and ignored; will be removed after v30 .
152
+ Deprecated and ignored; will be removed after v29 .
153
153
154
154
Returns
155
155
uncalibrated : `lsst.afw.image.MaskedImage`
@@ -158,7 +158,7 @@ def uncalibrateImage(self, maskedImage, includeScaleUncertainty=_UnsetEnum.UNSET
158
158
if includeScaleUncertainty is not _UnsetEnum .UNSET :
159
159
warnings .warn (
160
160
"The 'includeScaleUncertainty' argument to uncalibrateImage is deprecated and does "
161
- "nothing. It will be removed after v30 ." ,
161
+ "nothing. It will be removed after v29 ." ,
162
162
category = FutureWarning
163
163
)
164
164
return self ._uncalibrateImage (maskedImage )
0 commit comments