remove slashes in code sample in style guide
[python-guide.git] / docs / writing / style.rst
index 462ffba..b8e2199 100644 (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**