diff --git a/.hook-scripts/clean-up-pyc-and-pyo-files b/.hook-scripts/clean-up-pyc-and-pyo-files new file mode 100755 index 0000000..8440194 --- /dev/null +++ b/.hook-scripts/clean-up-pyc-and-pyo-files @@ -0,0 +1,4 @@ +#!/usr/bin/env bash + +find . -iname '*.pyc' -delete +find . -iname '*.pyo' -delete