Skip to content

Commit

Permalink
fix ruff formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
TjarkMiener committed Oct 15, 2024
1 parent bc4fac9 commit 88977ed
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/ctapipe/monitoring/calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ def __init__(
self.outlier_detectors = {}
if self.outlier_detector_list is not None:
for outlier_detector in self.outlier_detector_list:
self.outlier_detectors[outlier_detector["apply_to"]] = (
OutlierDetector.from_name(
name=outlier_detector["name"],
validity_range=outlier_detector["validity_range"],
subarray=self.subarray,
parent=self,
)
self.outlier_detectors[
outlier_detector["apply_to"]
] = OutlierDetector.from_name(
name=outlier_detector["name"],
validity_range=outlier_detector["validity_range"],
subarray=self.subarray,
parent=self,
)

def first_pass(
Expand Down

0 comments on commit 88977ed

Please sign in to comment.