Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Apr 2, 2024
1 parent 2d8978c commit 3011847
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vyper/cli/vyper_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ def _parse_cli_args():

def _cli_helper(f, output_formats, compiled):
if output_formats == ("combined_json",):
compiled = {str(path): v for (path, v) in compiled.items()}
print(json.dumps(compiled), file=f)
return

Expand Down Expand Up @@ -312,7 +313,7 @@ def compile_files(
no_bytecode_metadata=no_bytecode_metadata,
)

ret[str(file_path)] = output
ret[file_path] = output

return ret

Expand Down

0 comments on commit 3011847

Please # to comment.