Skip to content

Commit

Permalink
moving imports out
Browse files Browse the repository at this point in the history
  • Loading branch information
ahangsu committed Jan 3, 2023
1 parent 0292b03 commit f503c5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyteal/ast/abi/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
from pyteal.errors import TealInputError
from pyteal.types import require_type, TealType
from pyteal.ast.expr import Expr
from pyteal.ast.bytes import Bytes
from pyteal.ast.binaryexpr import GetBit
from pyteal.ast.ternaryexpr import SetBit
from pyteal.ast.int import Int
from pyteal.ast.substring import Extract, Substring, Suffix
from pyteal.ast.abi.type import TypeSpec, BaseType
Expand Down Expand Up @@ -606,9 +609,6 @@ def _get_or_store_encoded_bytes(
length: Expr | None = None,
) -> Expr:
from pyteal.ast.abi import BoolTypeSpec, Bool
from pyteal.ast.bytes import Bytes
from pyteal.ast.binaryexpr import GetBit
from pyteal.ast.ternaryexpr import SetBit

require_type(full_encoding, TealType.bytes)

Expand Down

0 comments on commit f503c5f

Please sign in to comment.