Skip to content

Commit 578d19b

Browse files
author
Kiseok Kim
authored
fixed pep8 error.
1 parent 168c079 commit 578d19b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

map_filter.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,6 @@ Now let's try it with reduce:
101101
.. code:: python
102102
103103
from functools import reduce
104-
product = reduce( (lambda x, y: x * y), [1, 2, 3, 4] )
104+
product = reduce((lambda x, y: x * y), [1, 2, 3, 4])
105105
106106
# Output: 24

0 commit comments

Comments
 (0)