Skip to content

Commit

Permalink
Update docstring of singleton
Browse files Browse the repository at this point in the history
  • Loading branch information
maxnoe committed Jan 8, 2024
1 parent f6e3354 commit 4b0f5a7
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/ctapipe/core/support.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
"""Module implementing supporting classes needed in ctapipe.core"""

__all__ = [
"Singleton",
]


class Singleton(type):
""" " metaclass for singleton pattern"""
"""metaclass for singleton pattern"""

instance = None

Expand Down

0 comments on commit 4b0f5a7

Please sign in to comment.