Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 91f385e

Browse files
committed
Fix indentation in abi.py
1 parent d190c59 commit 91f385e

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ethereum/abi.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -409,15 +409,15 @@ def __init__(self, contract_interface):
409409

410410
# If it's a function/constructor/event
411411
if entry_type != 'fallback' and 'inputs' in description:
412-
encode_types = [
413-
element['type']
414-
for element in description.get('inputs')
415-
]
416-
417-
signature = [
418-
(element['type'], element['name'])
419-
for element in description.get('inputs')
420-
]
412+
encode_types = [
413+
element['type']
414+
for element in description.get('inputs')
415+
]
416+
417+
signature = [
418+
(element['type'], element['name'])
419+
for element in description.get('inputs')
420+
]
421421

422422
if entry_type == 'function':
423423
normalized_name = normalize_name(description['name'])

0 commit comments

Comments
 (0)