Skip to content

Commit

Permalink
Add blank line in docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Hckjs committed Aug 12, 2022
1 parent 4fcad84 commit 7e1bf17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lstchain/image/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ class LSTImageCleaner(ImageCleaner):
Number of islands before it was reduced to one in step 5)
n_pixels: `int`
Number of pixels which survived the `tailcuts_clean` in step 2)
"""

picture_threshold_pe = FloatTelescopeParameter(
Expand Down Expand Up @@ -208,7 +209,7 @@ def __call__(self, tel_id: int, event):
image = event.dl1.tel[tel_id].image
arrival_times = event.dl1.tel[tel_id].peak_time
pic_thresh = self.picture_threshold_pe.tel[tel_id]
ped_std = event.mon.tel[tel_id].pedestal.charge_std
ped_std = event.mon.tel[tel_id].pedestal.charge_std

if (
self.use_pedestal_cleaning.tel[tel_id]
Expand Down

0 comments on commit 7e1bf17

Please sign in to comment.