Skip to content

Commit b7e693f

Browse files
committed
Drop the alias for treecorrUtils.TreecorrConfig
Now that the old TreecorrConfig is removed, there is no need to use an alias anymore.
1 parent 2ce7317 commit b7e693f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

python/lsst/analysis/tools/actions/vector/calcRhoStatistics.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
import numpy as np
3131
import treecorr # type: ignore[import]
3232

33-
from lsst.meas.algorithms.treecorrUtils import TreecorrConfig as TreecorrConfigNew
33+
from lsst.meas.algorithms.treecorrUtils import TreecorrConfig
3434
from lsst.pex.config import ChoiceField, ConfigField, Field
3535

3636
from ...interfaces import KeyedData, KeyedDataAction, Vector
@@ -160,13 +160,13 @@ class CalcRhoStatistics(KeyedDataAction):
160160
},
161161
)
162162

163-
treecorr = ConfigField[TreecorrConfigNew](
163+
treecorr = ConfigField[TreecorrConfig](
164164
doc="TreeCorr configuration",
165165
)
166166

167167
def setDefaults(self):
168168
super().setDefaults()
169-
self.treecorr = TreecorrConfigNew()
169+
self.treecorr = TreecorrConfig()
170170
self.treecorr.sep_units = "arcmin"
171171
self.treecorr.max_sep = 100.0
172172

0 commit comments

Comments
 (0)