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

Commit 1cc66da

Browse files
committed
Remove superficial var assignment
1 parent c16304e commit 1cc66da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/_solidity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def solidity_resolve_address(hex_code, library_symbol, library_address):
186186
raise ValueError('Address should not contain the 0x prefix')
187187

188188
try:
189-
_ = decode_hex(library_address)
189+
decode_hex(library_address)
190190
except TypeError:
191191
raise ValueError('library_address contains invalid characters, it must be hex encoded.')
192192

0 commit comments

Comments
 (0)