From 53a91be21fa0d9b90bba713cb74e10970de18475 Mon Sep 17 00:00:00 2001 From: Leandro Toledo Date: Mon, 23 May 2016 19:05:56 -0300 Subject: [PATCH] Update CONTRIBUTING.rst --- CONTRIBUTING.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 4d0a4a724..dec45ec51 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -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)