Skip to content

Commit 7f916c4

Browse files
Update devito/ir/iet/nodes.py
Co-authored-by: Ed Caunt <ed@devitocodes.com>
1 parent 4a5d5b9 commit 7f916c4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

devito/ir/iet/nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1590,7 +1590,7 @@ def __init__(self, body, halo_scheme):
15901590
self._halo_scheme = halo_scheme
15911591

15921592
def __repr__(self):
1593-
functions = "({})".format(",".join(i.name for i in self.functions))
1593+
functions = f"({','.join(i.name for i in self.functions)})"
15941594
return f"<{self.__class__.__name__}{functions}>"
15951595

15961596
@property

0 commit comments

Comments
 (0)