Skip to content

Commit

Permalink
correct \ to \\ in printable_characters (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
altendky authored Feb 16, 2024
1 parent 3091f4b commit 25b17b9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions clvm_tools/binutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ def assemble_from_ir(ir_sexp):
return sexp_1.cons(sexp_2)


printable_chars = ("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
"!#$%&'()*+,-./:;<=>?@[\]^_`{|}~ ")
printable_chars = (
"0123456789"
+ "abcdefghijklmnopqrstuvwxyz"
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
+ "!#$%&'()*+,-./:;<=>?@[]^_`{|}~ "
+ "\\"
)


def type_for_atom(atom) -> Type:
Expand Down

0 comments on commit 25b17b9

Please sign in to comment.