Skip to content

Commit

Permalink
not an f string
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian-B committed Apr 9, 2024
1 parent 24c7759 commit 7c809a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spinnman/processes/get_machine_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def _make_chip(self, chip_info: ChipSummaryInfo, machine: Machine) -> Chip:
(chip_info.x, chip_info.y), set())
if 0 in down_cores:
raise NotImplementedError(
f"Declaring scamp core (0) as down is not supported")
"Declaring scamp core (0) as down is not supported")
cores = list()
for i in range(1, n_cores):
if i in down_cores:
Expand Down

0 comments on commit 7c809a1

Please sign in to comment.