Skip to content

Commit

Permalink
Merge branch 'main' into michael/help-messages-patch
Browse files Browse the repository at this point in the history
  • Loading branch information
liav-certora committed Jan 8, 2025
2 parents 9e76bf0 + 6049695 commit 519c62d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,4 @@ jobs:
quorum validate-address --protocol-name Aave --chain Ethereum --payload-address 0xAD6c03BF78A3Ee799b86De5aCE32Bb116eD24637
quorum validate-batch --config Quorum/tests/regression.json
quorum validate-by-id --proposal-id 137 --protocol-name Aave
quorum validate-ipfs --proposal_id 20 --chain Scroll --payload-address 0x2B25cb729D90630395Cd3140f3460a73A41Fe5f0
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.022018.555389
20250108.105011.296010

0 comments on commit 519c62d

Please sign in to comment.