Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试过pylint --indent-string=" "了,但我不断收到帮助信息。我应该怎么做才能配置 pylint。
pylint --indent-string=" "
根据文档," "意味着 4 个空格。
" "
您需要使用单引号:pylint --indent-string=' '
pylint --indent-string=' '