Skip to content

Commit

Permalink
fix: Remove accidentally left-in debugging-aid comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephen Jacob committed Oct 10, 2024
1 parent b124edc commit 1d2f00d
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions amazon/ion/simpleion.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,25 +163,6 @@ def dumps(obj, imports=None, binary=True, sequence_as_stream=False,
ret_val = ret_val.decode('utf-8')
return ret_val

"""
import amazon.ion.simpleion as ion
x = eval('''
{
'foo': 1,
'bar': [
2,
3,
4
],
'baz': {
'quux': 'whiz'
}
}
''')
print(ion.dumps(x, binary=False, omit_version_marker=True, indent=u' ', trailing_commas=True))
"""

class IonPyValueModel(IntFlag):
"""Flags to control the types of values that are emitted from load(s).
Expand Down

0 comments on commit 1d2f00d

Please sign in to comment.