How to fix Python indentation

前端 未结 13 1305
梦毁少年i
梦毁少年i 2020-11-22 08:17

I have some Python code that have inconsistent indentation. There is a lot of mixture of tabs and spaces to make the matter even worse, and even space indentation is not pre

相关标签:
13条回答
  • 2020-11-22 09:09

    The reindent script did not work for me, due to some missing module. Anyway, I found this sed command which does the job perfect for me:

    sed -r 's/^([  ]*)([^ ])/\1\1\2/' file.py
    
    0 讨论(0)
提交回复
热议问题