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 a1fe6df commit cde5fcaCopy full SHA for cde5fca
src/structurizr/model/container.py
@@ -50,7 +50,7 @@ class ContainerIO(StaticStructureElementIO):
50
"""
51
52
technology: Optional[str] = ""
53
- components: List[Component] = set()
+ components: List["Component"] = set()
54
55
56
class Container(StaticStructureElement):
@@ -76,9 +76,9 @@ class Container(StaticStructureElement):
76
def __init__(
77
self,
78
*,
79
- parent: SoftwareSystem,
+ parent: "SoftwareSystem",
80
technology: str = "",
81
- components: Iterable[Component] = (),
+ components: Iterable["Component"] = (),
82
**kwargs
83
):
84
0 commit comments