Skip to content

Commit

Permalink
Merge pull request #395 from lsst/tickets/DM-46905
Browse files Browse the repository at this point in the history
DM-46905: Fix API in TreecorrConfig for rng_seed
  • Loading branch information
PFLeget authored Oct 16, 2024
2 parents 0977469 + aa5c9bc commit fa443fc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions python/lsst/meas/algorithms/treecorrUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,10 +203,9 @@ class TreecorrConfig(Config):
optional=True,
)

rng = Field[int](
rng_seed = Field[int](
doc="Value to seed the treecorr random number generator with. Used to generate patches.",
default=None,
optional=True,
default=13579,
)

def validate(self):
Expand Down

0 comments on commit fa443fc

Please sign in to comment.