Skip to content

Commit

Permalink
Add missing parentheses to instance priority
Browse files Browse the repository at this point in the history
Co-authored-by: Juan C. <[email protected]>
  • Loading branch information
tothtamas28 and JuanCoRo committed Jan 17, 2025
1 parent 2469ce7 commit 014d912
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyk/src/pyk/k2lean4/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def __init__(
def __str__(self) -> str:
modifiers = f'{self.modifiers} ' if self.modifiers else ''
attr_kind = f'{self.attr_kind.value} ' if self.attr_kind else ''
priority = f' priority := {self.priority}' if self.priority is not None else ''
priority = f' (priority := {self.priority})' if self.priority is not None else ''
ident = f' {self.ident}' if self.ident else ''
signature = f' {self.signature}' if self.signature else ''

Expand Down

0 comments on commit 014d912

Please sign in to comment.