can i delete the pycache folder when replacing the source file code example
Example: remove all pycache files
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf