Skip to content

Commit

Permalink
Update src/ape/managers/converters.py
Browse files Browse the repository at this point in the history
Co-authored-by: El De-dog-lo <3859395+fubuloubu@users.noreply.github.com>
  • Loading branch information
bitwise-constructs and fubuloubu authored Aug 30, 2024
1 parent 8c84af3 commit b7cd274
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ape/managers/converters.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def is_convertible(self, value: Any) -> bool:
return isinstance(value, list) and all(is_hex(v) or isinstance(v, bytes) for v in value)

def convert(self, value: Any) -> bytes:
return HexBytes(b"".join([HexBytes(v) for v in value]))
return HexBytes(b"".join(HexBytes(v) for v in value))


class StringIntConverter(ConverterAPI):
Expand Down

0 comments on commit b7cd274

Please sign in to comment.