Skip to content

Commit

Permalink
python: ruff format
Browse files Browse the repository at this point in the history
  • Loading branch information
cdump committed Feb 26, 2024
1 parent eb35706 commit 70b751b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evmole/evm/element.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ class Element:
__match_args__ = ('label',)

data: bytes
label: Any|None
label: Any | None

def __init__(self, data: bytes, label: Any|None = None):
def __init__(self, data: bytes, label: Any | None = None):
self.data = data
self.label = label

Expand Down

0 comments on commit 70b751b

Please sign in to comment.