Skip to content

Commit

Permalink
geo bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krwood committed Jan 3, 2024
1 parent 3a893fe commit 2933be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/proto_nd_flow/resources/geometry.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def _load_charge_geometry(self):
if self.network_agnostic == True:
warnings.warn('Encountered an out-of-network chip, but because you enabled ``network_agnostic``, we will carry on with assumptions about the io group and io channel')
# using the info about the first chip on the tile for all others
io_group_io_channel = list(geometry_yaml['tile_chip_to_io'][tile].values())[0]
io_group_io_channel = list(geometry_yaml[tile]['tile_chip_to_io'][tile].values())[0]
else:
continue

Expand Down

0 comments on commit 2933be7

Please sign in to comment.