We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b11770 commit b7ad017Copy full SHA for b7ad017
pyk/src/pyk/k2lean4/model.py
@@ -204,7 +204,7 @@ def __init__(
204
def __str__(self) -> str:
205
modifiers = f'{self.modifiers} ' if self.modifiers else ''
206
attr_kind = f'{self.attr_kind.value} ' if self.attr_kind else ''
207
- priority = f' priority := {self.priority}' if self.priority is not None else ''
+ priority = f' (priority := {self.priority})' if self.priority is not None else ''
208
ident = f' {self.ident}' if self.ident else ''
209
signature = f' {self.signature}' if self.signature else ''
210
0 commit comments