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 5c6135c commit 73193d5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 6 additions & 1 deletion tests/functional/codegen/types/numbers/test_signed_ints.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

import pytest

from vyper.exceptions import InvalidOperation, InvalidType, OverflowException, TypeMismatch, ZeroDivisionException
from vyper.exceptions import (
InvalidOperation,
OverflowException,
TypeMismatch,
ZeroDivisionException,
)
from vyper.semantics.types import IntegerT
from vyper.utils import evm_div, evm_mod

Expand Down
7 changes: 6 additions & 1 deletion tests/functional/codegen/types/numbers/test_unsigned_ints.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@

import pytest

from vyper.exceptions import InvalidOperation, TypeMismatch, OverflowException, ZeroDivisionException
from vyper.exceptions import (
InvalidOperation,
OverflowException,
TypeMismatch,
ZeroDivisionException,
)
from vyper.semantics.types import IntegerT
from vyper.utils import evm_div, evm_mod

Expand Down
2 changes: 1 addition & 1 deletion vyper/builtins/_signatures.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def infer_arg_types(
) -> list[VyperType]:
# validate arg types and sanity check the return type
# TODO: circular call with some `infer_arg_types`
#self.get_return_type(node, expected_type=return_type)
# self.get_return_type(node, expected_type=return_type)

ret = [expected for (_, expected) in self._inputs]

Expand Down

0 comments on commit 73193d5

Please sign in to comment.