Skip to content

Commit

Permalink
Fix up error format string
Browse files Browse the repository at this point in the history
  • Loading branch information
hunhoffe committed Dec 11, 2024
1 parent ba77331 commit 6530e3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/iron/placers.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def make_placement(
if not worker.tile in computes:
raise ValueError(
f"Partial Placement Error: "
"Tile {worker.tile} not available on "
"device {device} or has already been used."
f"Tile {worker.tile} not available on "
f"device {device} or has already been used."
)
computes.remove(worker.tile)

Expand Down

0 comments on commit 6530e3a

Please sign in to comment.