Skip to content

Commit

Permalink
fix[tool]: fix combined_json output for CLI
Browse files Browse the repository at this point in the history
the output json would not be produced because Path does not have a json
serializer
  • Loading branch information
charles-cooper committed Apr 1, 2024
1 parent 4595938 commit f9b6504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vyper/cli/vyper_compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ def compile_files(
no_bytecode_metadata=no_bytecode_metadata,
)

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

return ret

Expand Down

0 comments on commit f9b6504

Please # to comment.