mirror of
https://github.com/jazzband/django-admin2.git
synced 2026-03-16 22:20:24 +00:00
Remove 'python -c'
You should have either `python -c` or '>>>', but not both. I'm not sure whether "$ python -c 'import this'" or '>>> import this' is better, but the current version is definitely wrong.
This commit is contained in:
parent
a94416d99e
commit
58ffe40eb9
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ Best Practices
|
|||
|
||||
Follow PEP-0008 and memorize the Zen of Python::
|
||||
|
||||
>>> python -c 'import this'
|
||||
>>> import this
|
||||
|
||||
Please keep your code as clean and straightforward as possible. When we see more than one or two functions/methods starting with `_my_special_function` or things like `__builtins__.object = str` we start to get worried. Rather than try and figure out your brilliant work we'll just **reject** it and send along a request for simplification.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue