From 728bfba426e08de491f2944c3e287480aae23322 Mon Sep 17 00:00:00 2001 From: Derrick Gilland Date: Tue, 28 Sep 2021 17:44:21 -0400 Subject: [PATCH] Remove unnecessary "from __future__" import in docs' doctests. --- docs/chaining.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/chaining.rst b/docs/chaining.rst index b3bc1015..7f95d49a 100644 --- a/docs/chaining.rst +++ b/docs/chaining.rst @@ -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) @@ -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 -