Skip to content

Commit

Permalink
[MINOR] Remove debug print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
dsavoiu committed Aug 28, 2019
1 parent eb3153d commit fdf7ce7
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions PostProcessing/python/Palisade/_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,8 @@ def __init__(self, *args, **kwargs):
except TypeError:
# attempt to wrap non-hashable types
if isinstance(value, list) or isinstance(value, tuple):
print("Wrap list/tuple: ", value)
value = tuple(enumerate(value))
elif isinstance(value, dict):
print("Wrap dict: ", value)
value = tuple(six.iteritems(value))
else:
raise
Expand Down

0 comments on commit fdf7ce7

Please sign in to comment.