Closed Gr1N closed 7 years ago
Linter issues fixed.
About doctest
, I can try to rewrite all examples in doctest
style, but as I understand there some limitations, e.g. we can't use await
syntax.
Some example according to doctest
format:
>>> async def mul_2(num):
... return num * 2
...
>>> paco.run(paco.map(mul_2, [1, 2, 3, 4, 5]))
[2, 4, 6, 8, 10]
Yes, that would be a bit tricky... I think we can consider that in another PR / enhancement iteration.
Is it fine for you if I proceed with the merge?
You can also create a new section in the README called Contributors and add there yourself :)
Is it fine for you if I proceed with the merge?
Yes, if PR looks good for you.
You can also create a new section in the README called Contributors and add there yourself :)
Thanks, but I think if anyone want to see list of contributors he can just run:
% git log --format='%aN' | sort -u
:)
re contributors, in that case I'd prefer using git-extras
instead:
https://github.com/tj/git-extras/blob/master/Commands.md#git-summary
Hi,
Some my ideas and improvements for examples in docstrings.