Skip to content
Snippets Groups Projects
Unverified Commit 835df4b2 authored by Peter Scheibel's avatar Peter Scheibel Committed by Todd Gamblin
Browse files

syaml_int type should use int.__repr__ rather than str.__repr__ (#13487)

parent 94de86ae
No related branches found
No related tags found
No related merge requests found
......@@ -47,7 +47,7 @@ class syaml_str(str):
class syaml_int(int):
__repr__ = str.__repr__
__repr__ = int.__repr__
#: mapping from syaml type -> primitive type
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment