Skip to content

Commit 8107099

Browse files
Update mapping render "tile_shape"->"shape"
1 parent 8d4aeac commit 8107099

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

accelforge/frontend/mapping/mapping.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def as_str(self, with_initial_tile_shape=True, with_tile_shape=True):
238238
):
239239
s.append(f"initial={self.initial_tile_shape}")
240240
if with_tile_shape and (self.tile_shape not in (None, "symbol")):
241-
s.append(f"tile_shape={self.tile_shape}")
241+
s.append(f"shape={self.tile_shape}")
242242
return " ".join(s)
243243

244244
def update(self, **kwargs) -> "TilePattern":

0 commit comments

Comments
 (0)