Skip to content

Commit

Permalink
Merge branch 'main' of github.com:Certora/Quorum into niv/CERT-7975-T…
Browse files Browse the repository at this point in the history
…est-ALL-commands
  • Loading branch information
nivcertora committed Jan 8, 2025
2 parents 39b052e + 6049695 commit 0ca3002
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Quorum/utils/pretty_printer.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class Colors(StrEnum):
RESET = '\033[0m'


def pprint(message: str, status: Colors, heading: Optional[Heading]=None):
s = status + message + Colors.RESET
def pprint(message: object, status: Colors, heading: Optional[Heading]=None):
s = status + str(message) + Colors.RESET
if heading:
s += '\n' + heading * len(message) + '\n'
print(s)
2 changes: 1 addition & 1 deletion version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20250108.104754.984115
20250108.104827.482077

0 comments on commit 0ca3002

Please sign in to comment.