Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add types for functions called by other modules #95

Merged
merged 1 commit into from
Feb 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions clvm_tools/binutils.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import string
from typing import Dict

from clvm import KEYWORD_FROM_ATOM, KEYWORD_TO_ATOM
from clvm import KEYWORD_FROM_ATOM, KEYWORD_TO_ATOM, SExp
from clvm.casts import int_from_bytes, int_to_bytes
from clvm.SExp import SExp

Expand Down Expand Up @@ -90,6 +91,6 @@ def disassemble(sexp: SExp, keyword_from_atom: Dict[bytes, str] = KEYWORD_FROM_A
return write_ir(symbols)


def assemble(s):
def assemble(s: str) -> SExp:
symbols = read_ir(s)
return assemble_from_ir(symbols)