Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tserg committed Dec 18, 2023
1 parent 9f667ca commit b3eb9f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions tests/functional/syntax/test_bytes.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
import pytest

from vyper import compiler
from vyper.exceptions import (
InvalidOperation,
StructureException,
SyntaxException,
TypeMismatch,
)
from vyper.exceptions import InvalidOperation, StructureException, SyntaxException, TypeMismatch

fail_list = [
(
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/syntax/test_logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def foo():
@external
def test():
log Test(-7)
"""
""",
]


Expand Down
2 changes: 1 addition & 1 deletion tests/functional/syntax/test_minmax.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import pytest

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

fail_list = [
(
Expand Down

0 comments on commit b3eb9f2

Please sign in to comment.