At least I think it's a typo?
This commit is contained in:
Anton Sarukhanov 2017-05-22 22:30:36 -07:00 committed by Fredrik Lindqvist
parent 8de72a75cb
commit e110202625

View File

@ -17,7 +17,7 @@ Summary of the most relevant points:
- Use 4 spaces per indentation level. We don't use tabs. - Use 4 spaces per indentation level. We don't use tabs.
- Comments should be full sentences and end with a period. - Comments should be full sentences and end with a period.
- [Imports](https://www.python.org/dev/peps/pep-0008/#imports) should be ordered. - [Imports](https://www.python.org/dev/peps/pep-0008/#imports) should be ordered.
- Constants and the content of lists and directories should be in alphabetical order. - Constants and the content of lists and dictionaries should be in alphabetical order.
- Avoid trailing whitespace but surround binary operators with a single space. - Avoid trailing whitespace but surround binary operators with a single space.
- Line separator should be set to `LF`. - Line separator should be set to `LF`.