pre_remove() {

if [ "pacman" = "debian" ] && [ "$1" != "remove" ]; then
    exit 0
fi

echo "Deleting *.pyc..."
find /data/data/com.termux/files/usr/opt/pypy3/lib/pypy3.11/_tkinter/ | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf

exit 0
}
