Skip to content

Commit

Permalink
fix flake error
Browse files Browse the repository at this point in the history
  • Loading branch information
popenta committed Mar 5, 2024
1 parent 8816915 commit b0e5fc4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .flake8
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[flake8]
ignore = E501
ignore = E501, E722
3 changes: 3 additions & 0 deletions multiversx_sdk/network_providers/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class EmptyAddress:
def to_bech32(self) -> str:
return ""

def to_hex(self) -> str:
return ""


class SmartContractResult:
def __init__(self, raw: Dict[str, Any]) -> None:
Expand Down

0 comments on commit b0e5fc4

Please sign in to comment.