Skip to content

Commit

Permalink
Fix help string
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasBeiske committed Jan 13, 2023
1 parent 0b66c7b commit ea8c66a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion ctapipe/reco/sklearn.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,9 @@ class SKLearnReconstructor(Reconstructor):
target: str = None

prefix = Unicode(
default_value=None, allow_none=True, help="Prefix for output of this model"
default_value=None,
allow_none=True,
help="Prefix for the output of this model. If None, ``model_cls`` is used.",
).tag(config=True)
features = List(Unicode(), help="Features to use for this model").tag(config=True)
model_config = Dict({}, help="kwargs for the sklearn model").tag(config=True)
Expand Down

0 comments on commit ea8c66a

Please sign in to comment.