Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
charles-cooper committed Nov 27, 2022
1 parent f1f0efa commit 7a7a339
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions vyper/semantics/analysis/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,10 @@
from vyper.semantics.analysis.base import ExprInfo, VarInfo
from vyper.semantics.analysis.levenshtein_utils import get_levenshtein_error_suggestions
from vyper.semantics.namespace import get_namespace
from vyper.semantics.types import (
TYPE_T,
AddressT,
BoolT,
BytesM_T,
BytesT,
DArrayT,
IntegerT,
SArrayT,
StringT,
TupleT,
VyperType,
)
from vyper.semantics.types.base import TYPE_T, VyperType
from vyper.semantics.types.bytestrings import BytesT, StringT
from vyper.semantics.types.primitives import AddressT, BoolT, BytesM_T, IntegerT
from vyper.semantics.types.subscriptable import DArrayT, SArrayT, TupleT
from vyper.utils import checksum_encode


Expand Down

0 comments on commit 7a7a339

Please sign in to comment.