Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 1.31 KB

README.rst

File metadata and controls

43 lines (27 loc) · 1.31 KB
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.