microsoft / c9-python-getting-started

Sample code for Channel 9 Python for Beginners course
MIT License
7.75k stars 2.25k forks source link

Unified indent to 4 spaces per level #67

Open devquint opened 4 years ago

devquint commented 4 years ago

There were some mixture of 4 spaces and tab as indent. However like case of #62 , Python 3 cannot execute when the indent is mixture of tab and spaces. PEP 8 recommends 4 spaces for each indent, so @devquint @ChaeyeonSeo @jesusleejy @Hyuntae-Jeong @Dorika0203 unified all indentation to 4 spaces according to PEP 8.