We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f94e666 commit 1d95d92Copy full SHA for 1d95d92
monai/utils/component_store.py
@@ -49,11 +49,10 @@ def _my_func(a, b):
49
result = func(7, 6)
50
51
"""
52
-
53
- _Component = namedtuple("Component", ("description", "value")) # internal value pair
+ _Component = namedtuple("_Component", ("description", "value")) # internal value pair
54
55
def __init__(self, name: str, description: str) -> None:
56
- self.components: dict[str, self._Component] = {}
+ self.components: dict[str, ComponentStore._Component] = {}
57
self.name: str = name
58
self.description: str = description
59
0 commit comments