Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Sep 26, 2023
1 parent 8f2a969 commit 335da2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/parser/syntax/test_abi_decode.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

from vyper import compiler
from vyper.exceptions import InvalidType, TypeMismatch
from vyper.exceptions import TypeMismatch

fail_list = [
(
Expand Down Expand Up @@ -36,7 +36,7 @@ def test_abi_encode_fail(bad_code, exc):
@external
def foo(x: Bytes[32]) -> uint256:
return _abi_decode(x, uint256)
""",
"""
]


Expand Down

0 comments on commit 335da2e

Please sign in to comment.