Skip to content

Commit

Permalink
Removes unneeded check. Ref #55
Browse files Browse the repository at this point in the history
  • Loading branch information
dsc committed Oct 19, 2024
1 parent f5f4d08 commit 85ed684
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
tmp/
dist/
__pycache__

# Python
pip-log.txt
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Bunches happily and transparently serialize to JSON and YAML.
'{"ponies": "are pretty!", "foo": {"lol": true}, "hello": 42}'
```

If JSON support is present (``json`` or ``simplejson`` to support python <= 2.5), ``Bunch`` will have a ``toJSON()`` method which returns the object as a JSON string.
If JSON support is present (stdlib ``json``, or ``simplejson`` to support python <= 2.5), ``Bunch`` will have a ``toJSON()`` method which returns the object as a JSON string.

If you have [PyYAML](http://pyyaml.org/wiki/PyYAML) installed, Bunch attempts to register itself with the various YAML Representers so that Bunches can be transparently dumped and loaded.

Expand Down

0 comments on commit 85ed684

Please sign in to comment.