mirror of
https://github.com/kennethreitz/python-guide.git
synced 2026-06-05 23:00:18 +00:00
remove slashes in code sample in style guide
This commit is contained in:
@@ -30,9 +30,9 @@ most explicit and straightforward manner is preferred.
|
|||||||
|
|
||||||
.. code-block:: python
|
.. code-block:: python
|
||||||
|
|
||||||
def make_complex(\*args):
|
def make_complex(*args):
|
||||||
x, y = args
|
x, y = args
|
||||||
return dict(\**locals())
|
return dict(**locals())
|
||||||
|
|
||||||
**Good**
|
**Good**
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user