move SExp import to types/program.py

This commit is contained in:
Gene Hoffman 2020-09-14 12:42:35 -07:00 committed by Gene Hoffman
parent 75e9dcc8f2
commit 04e036ed2f
2 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,8 @@ import io
from typing import Any, List, Set
from src.types.sized_bytes import bytes32
from src.util.clvm import run_program, sexp_from_stream, sexp_to_stream, SExp
from src.util.clvm import run_program, sexp_from_stream, sexp_to_stream
from clvm import SExp
from src.util.hash import std_hash
from clvm_tools.curry import curry

View File

@ -1,4 +1,4 @@
from clvm import run_program as default_run_program, SExp, KEYWORD_TO_ATOM # lgtm[py/unused-import] # noqa
from clvm import run_program as default_run_program, KEYWORD_TO_ATOM # noqa
from clvm.operators import OPERATOR_LOOKUP # noqa
from clvm.EvalError import EvalError # noqa
from clvm.casts import int_from_bytes, int_to_bytes # noqa