Skip to content

Commit

Permalink
update: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
olivmath committed Jun 23, 2023
1 parent b97db86 commit 9dbd1c3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion merkly/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
class PowerOfTwoError(Exception):
def __init__(self, number):
self.number = number
super().__init__(f"Size of leafs should be a power of 2 your leafs length is: {number}")
super().__init__(
f"Size of leafs should be a power of 2 your leafs length is: {number}"
)


class InvalidHashFunctionError(Exception):
Expand Down
1 change: 0 additions & 1 deletion test/utils/test_crypto.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from typing import List



@mark.parametrize(
"full, half",
[
Expand Down

0 comments on commit 9dbd1c3

Please sign in to comment.