Skip to content

Commit

Permalink
simplejson#299 Comment error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Attakay78 committed Jul 1, 2022
1 parent 74c95b6 commit e4941c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simplejson/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ def dumps(obj, skipkeys=False, ensure_ascii=True, check_circular=True,
iterable_as_array=False, **kw):
"""Serialize ``obj`` to a JSON formatted ``str``.
If ``skipkeys`` is false then ``dict`` keys that are not basic types
If ``skipkeys`` is true then ``dict`` keys that are not basic types
(``str``, ``int``, ``long``, ``float``, ``bool``, ``None``)
will be skipped instead of raising a ``TypeError``.
Expand Down

0 comments on commit e4941c0

Please sign in to comment.