Skip to content

Commit

Permalink
move SExp import to types/program.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hoffmang9 committed Sep 14, 2020
1 parent 75e9dcc commit 04e036e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/types/program.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
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
Expand Down
2 changes: 1 addition & 1 deletion src/util/clvm.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 04e036e

Please sign in to comment.