Skip to content

Commit

Permalink
minor debug for House0Layout
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicamillar committed Nov 2, 2024
1 parent 824cec8 commit c5015c4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/gwproto/data_classes/house_0_layout.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ def __init__(
cacs: Optional[dict[str, ComponentAttributeClassGt]] = None, # by id
components: Optional[dict[str, Component]] = None, # by id
nodes: Optional[dict[str, ShNode]] = None, # by name
channels: Optional[dict[str, DataChannel]] = None, # by name
data_channels: Optional[dict[str, DataChannel]] = None, # by name
) -> None:
super().__init__(
layout=layout,
cacs=cacs,
components=components,
nodes=nodes,
data_channels=channels,
data_channels=data_channels,
)
if "ZoneList" not in layout:
raise DcError(
Expand Down

0 comments on commit c5015c4

Please sign in to comment.