You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python -c "import os, shutil; [shutil.rmtree(d) for d in [os.path.join(root, d) for root, dirs, files in os.walk('.') for d in dirs if d == '__pycache__']]"
python -c "import os; [os.remove(f) for f in [os.path.join(root, f) for root, dirs, files in os.walk('.') for f in files if f.endswith('.pyc') or f.endswith('.pyo')]]"