Skip to content

Commit

Permalink
Merge pull request #127 from lsst/tickets/DM-39672
Browse files Browse the repository at this point in the history
DM-39672: Don't use a `set` as the default for a config ListField.
  • Loading branch information
TallJimbo committed Jun 21, 2023
2 parents 25b4767 + cc8fc7f commit 8423c58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/analysis/tools/actions/plot/histPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class HistStatsPanel(Config):
statsLabels = ListField[str](
doc="list specifying the labels for stats",
length=3,
default={"N$_{{data}}$", "Med", "${{\\sigma}}_{{MAD}}$"},
default=("N$_{{data}}$", "Med", "${{\\sigma}}_{{MAD}}$"),
)
stat1 = ListField[str](
doc="A list specifying the vector keys of the first scalar statistic to be shown in this panel."
Expand Down

0 comments on commit 8423c58

Please sign in to comment.