remove slashes in code sample in style guide

This commit is contained in:
Thomas Ballinger
2012-07-05 14:41:21 -04:00
parent 9f53bc9123
commit 96fb1d42d1
+2 -2
View File
@@ -30,9 +30,9 @@ most explicit and straightforward manner is preferred.
.. code-block:: python
def make_complex(\*args):
def make_complex(*args):
x, y = args
return dict(\**locals())
return dict(**locals())
**Good**