Skip to content

Commit

Permalink
remove duplicate list
Browse files Browse the repository at this point in the history
  • Loading branch information
sandbubbles committed Nov 7, 2024
1 parent 6806134 commit 5d954d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/unit/cli/vyper_compile/test_compile_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

from vyper.cli.vyper_compile import compile_files
from vyper.cli.vyper_json import compile_json
from vyper.compiler import INTERFACE_OUTPUT_FORMATS
from vyper.compiler.input_bundle import FilesystemInputBundle
from vyper.compiler.output_bundle import OutputBundle
from vyper.compiler.phases import CompilerData
Expand Down Expand Up @@ -445,7 +446,7 @@ def baz() -> uint8:
"""
file = make_file("interface.vyi", interface)
compile_files([file], ["ast", "annotated_ast", "interface", "external_interface", "abi"])
compile_files([file], INTERFACE_OUTPUT_FORMATS)

unallowed_formats = [
"layout",
Expand Down

0 comments on commit 5d954d8

Please sign in to comment.