Answers for "how to remove all tpy errors only in a project python"

4

remove all pycache files

find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
Posted by: Guest on June-04-2020

Code answers related to "how to remove all tpy errors only in a project python"

Python Answers by Framework

Browse Popular Code Answers by Language