Skip to content

Commit

Permalink
fix: tox
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Apr 4, 2024
1 parent 3eea216 commit ef59a43
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ethereum_test_tools/code/yul.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from pathlib import Path
from shutil import which
from subprocess import CompletedProcess, run
from typing import Optional, Sized, SupportsBytes, Tuple, Type
from typing import Optional, Sized, SupportsBytes, Type

from semver import Version

Expand Down Expand Up @@ -87,7 +87,7 @@ def __init__(
def compiled(self) -> bytes:
"""Returns the compiled Yul source code."""
solc_args = ("--evm-version", self.evm_version) if self.evm_version else ()

result = self.run(*solc_args, *DEFAULT_SOLC_ARGS, input=self.source)

if result.returncode:
Expand Down

0 comments on commit ef59a43

Please sign in to comment.