Skip to content

Commit

Permalink
Appease mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
SheldonHolmgren committed Jun 29, 2023
1 parent 5b5b3ae commit 6edf4ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crytic_compile/platform/etherscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def compile(self, crytic_compile: "CryticCompile", **kwargs: str) -> None:

if "Proxy" in result and result["Proxy"] == "1":
assert "Implementation" in result
implementation = result["Implementation"]
implementation = str(result["Implementation"])
if prefix is not None:
implementation = f"{prefix}:{implementation}"
compilation_unit.implementation_address = implementation
Expand Down

0 comments on commit 6edf4ed

Please sign in to comment.