Skip to content

Commit

Permalink
Remove unnecessary "from __future__" import in docs' doctests.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilland committed Sep 28, 2021
1 parent f0ac168 commit 728bfba
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions docs/chaining.rst
Expand Up @@ -42,7 +42,6 @@ Method chaining is deferred (lazy) until ``.value()`` is called:

.. doctest::

>>> from __future__ import print_function
>>> from pydash import py_

>>> def echo(value): print(value)
Expand Down Expand Up @@ -156,4 +155,3 @@ Through ``py_`` any function that ends with ``"_"`` can be accessed without the

>>> py_.filter([1, 2, 3], lambda x: x > 1) == pydash.filter_([1, 2, 3], lambda x: x > 1)
True

0 comments on commit 728bfba

Please sign in to comment.