We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c144cc commit fbc4ff2Copy full SHA for fbc4ff2
pyk/src/pyk/k2lean4/model.py
@@ -150,7 +150,7 @@ def __init__(
150
def __str__(self) -> str:
151
modifiers = f'{self.modifiers} ' if self.modifiers else ''
152
attr_kind = f'{self.attr_kind.value} ' if self.attr_kind else ''
153
- priority = f' priority := {self.priority}' if self.priority is not None else ''
+ priority = f' (priority := {self.priority})' if self.priority is not None else ''
154
ident = f' {self.ident}' if self.ident else ''
155
signature = f' {self.signature}' if self.signature else ''
156
0 commit comments