Root.Formatting.Spacing |
Parent | Index |
Sibling aspects | Length | Quotation |
Spacing
All whitespace found between non-whitespace characters.
Subaspects
Example
# Here is an example of code with spacing issues including
# unnecessary blank lines and missing space around operators.
def func( ):
return 37*-+2
Importance
Useless spacing affects the readability and maintainability of a code.
How to fix this
Removing the trailing spaces and the meaningless blank lines.