Skip to content

Commit 3c4007f

Browse files
committed
Fix another sonar complaint
1 parent b9fa5db commit 3c4007f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/ctapipe/calib/camera/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from .calibrator import CameraCalibrator # noqa: F401
77
from .gainselection import GainSelector # noqa: F401
88

9-
__all__ = [
10-
# "CameraCalibrator",
11-
# "GainSelector",
12-
]
9+
# CameraCalibrator and GainSelector not added to __all__ here to avoid
10+
# docs build error as it would result in the class being exposed at 3 levels
11+
# which is not supported by sphinx
12+
__all__ = []

0 commit comments

Comments
 (0)