Skip to content

Commit fbc4ff2

Browse files
tothtamas28JuanCoRo
andcommitted
Add missing parentheses to instance priority
Co-authored-by: Juan C. <38925412+JuanCoRo@users.noreply.github.com>
1 parent 4c144cc commit fbc4ff2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyk/src/pyk/k2lean4/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def __init__(
150150
def __str__(self) -> str:
151151
modifiers = f'{self.modifiers} ' if self.modifiers else ''
152152
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 ''
153+
priority = f' (priority := {self.priority})' if self.priority is not None else ''
154154
ident = f' {self.ident}' if self.ident else ''
155155
signature = f' {self.signature}' if self.signature else ''
156156

0 commit comments

Comments
 (0)