Skip to content

Commit bc8cd2c

Browse files
committed
Formatting destroyed a string literal again.
1 parent 7d56bf9 commit bc8cd2c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

hugr-py/src/hugr/ops.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,9 @@ class IncompleteOp(Exception):
132132

133133
@property
134134
def msg(self) -> str:
135-
return f"Operation {
136-
self.op} is incomplete, may require set_in_types to be called."
135+
return (
136+
f"Operation {self.op} is incomplete, may require set_in_types to be called."
137+
)
137138

138139

139140
V = TypeVar("V")

0 commit comments

Comments
 (0)