We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9fa5db commit 3c4007fCopy full SHA for 3c4007f
src/ctapipe/calib/camera/__init__.py
@@ -6,7 +6,7 @@
6
from .calibrator import CameraCalibrator # noqa: F401
7
from .gainselection import GainSelector # noqa: F401
8
9
-__all__ = [
10
- # "CameraCalibrator",
11
- # "GainSelector",
12
-]
+# CameraCalibrator and GainSelector not added to __all__ here to avoid
+# docs build error as it would result in the class being exposed at 3 levels
+# which is not supported by sphinx
+__all__ = []
0 commit comments