Skip to content

Commit

Permalink
Merge branch 'master' of github.com:semiversus/python-broqer
Browse files Browse the repository at this point in the history
  • Loading branch information
semiversus committed Sep 18, 2018
2 parents ba8ed0c + 7a45377 commit d9d6d9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions broqer/op/map_.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ class Map(Operator):
""" Apply ``map_func(*args, value, **kwargs)`` to each emitted value.
:param publisher: source publisher
:param map_func: function to be applied for each emit
:param \\*args: variable arguments to be used for calling map_coro
:param \\*args: variable arguments to be used for calling map_func
:param unpack: value from emits will be unpacked as (*value)
:param \\**kwargs: keyword arguments to be used for calling map_coro
:param \\**kwargs: keyword arguments to be used for calling map_func
"""
def __init__(self, publisher: Publisher, map_func: Callable[[Any], Any],
*args, unpack=False, **kwargs) -> None:
Expand Down

0 comments on commit d9d6d9e

Please sign in to comment.