Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Dec 27, 2024
1 parent 45bb007 commit 399da3a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions boa/interpret.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,9 @@ def load_partial(filename: str, compiler_args=None):
)


def _loads_partial_vvm(source_code: str, version: Version, filename: str, base_path=None):
def _loads_partial_vvm(
source_code: str, version: Version, filename: str, base_path=None
):
global _disk_cache

if base_path is None:
Expand All @@ -283,7 +285,9 @@ def _loads_partial_vvm(source_code: str, version: Version, filename: str, base_p
vvm.install_vyper(version=version)

def _compile():
compiled_src = vvm.compile_source(source_code, vyper_version=version, base_path=base_path)
compiled_src = vvm.compile_source(
source_code, vyper_version=version, base_path=base_path
)
compiler_output = compiled_src["<stdin>"]
return VVMDeployer.from_compiler_output(compiler_output, filename=filename)

Expand Down

0 comments on commit 399da3a

Please sign in to comment.