File tree Expand file tree Collapse file tree
python/lsst/analysis/tools/actions/vector Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030import numpy as np
3131import treecorr # type: ignore[import]
3232
33- from lsst .meas .algorithms .treecorrUtils import TreecorrConfig as TreecorrConfigNew
33+ from lsst .meas .algorithms .treecorrUtils import TreecorrConfig
3434from lsst .pex .config import ChoiceField , ConfigField , Field
3535
3636from ...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
You can’t perform that action at this time.
0 commit comments