You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Every once in a while I want to print a dict or something with pout and use that in actual python code, pout's dictionaries and lists are close to valid but not quite, which is annoying, I think I should add a py method that basically just does:
json.dumps(data, sort_keys=True, indent=4)
This will print valid dicts and lists and stuff, other things would have to be used for classes and the like (or an error raised).
The text was updated successfully, but these errors were encountered:
Every once in a while I want to print a dict or something with pout and use that in actual python code, pout's dictionaries and lists are close to valid but not quite, which is annoying, I think I should add a
py
method that basically just does:This will print valid dicts and lists and stuff, other things would have to be used for classes and the like (or an error raised).
The text was updated successfully, but these errors were encountered: