Skip to content

Commit

Permalink
add missing spaces for docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
TjarkMiener committed Aug 5, 2024
1 parent e8d6504 commit cbf1bad
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/ctapipe/monitoring/outlier.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class RangeOutlierDetector(OutlierDetector):
trait=traits.Float(),
default_value=[1.0, 2.0],
help=(
"Range of valid statistic values (in units of the image value)."
"Range of valid statistic values (in units of the image value). "
"Values outside the range are identified as outliers."
),
minlen=2,
Expand Down Expand Up @@ -86,8 +86,8 @@ class MedianOutlierDetector(OutlierDetector):
trait=traits.Float(),
default_value=[-1.0, 1.0],
help=(
"Multiplicative factors (unitless) applied to the camera median"
"of the provided statistic values to define a valid range based on the"
"Multiplicative factors (unitless) applied to the camera median "
"of the provided statistic values to define a valid range based on the "
"deviation of the values to its camera median."
),
minlen=2,
Expand Down Expand Up @@ -118,8 +118,8 @@ class StdOutlierDetector(OutlierDetector):
trait=traits.Float(),
default_value=[-1.0, 1.0],
help=(
"Multiplicative factors (unitless) applied to the camera standard deviation"
"of the provided statistic values to define a valid range based on the"
"Multiplicative factors (unitless) applied to the camera standard deviation "
"of the provided statistic values to define a valid range based on the "
"deviation of the values to its camera median."
),
minlen=2,
Expand Down

0 comments on commit cbf1bad

Please sign in to comment.