Update CONTRIBUTING.rst

This commit is contained in:
Leandro Toledo 2016-05-23 19:05:56 -03:00
parent 2471eaa778
commit 53a91be21f

View file

@ -151,9 +151,6 @@ Methods, functions and classes can specify optional parameters (with default
values) using Python's keyword arg syntax. When providing a value to such a
callable we prefer that the call also uses keyword arg syntax. For example::
def f(required, optional=None):
pass
# GOOD
f(0, optional=True)