Fixed README error. [ci skip]

This commit is contained in:
Fabio Caccamo 2019-06-11 14:34:46 +02:00
parent 97a949deab
commit 94bfd478d5
1 changed files with 2 additions and 0 deletions

View File

@ -59,11 +59,13 @@ Extra methods
d.deepcopy() d.deepcopy()
.. code:: python .. code:: python
# Return a readable representation of any dict/list. # Return a readable representation of any dict/list.
s = benedict.dump(d.keypaths()) s = benedict.dump(d.keypaths())
print(s) print(s)
.. code:: python .. code:: python
# Return a readable representation of the dict for the given key (optional). # Return a readable representation of the dict for the given key (optional).
s = d.dump_items(key=None) s = d.dump_items(key=None)
print(s) print(s)