A debugging tale
·
·
I ran into an interesting issue debugging the other day … I used isort with pre-commit to automatically sort imports before committing my code. This is a huge time saver and I am very thankful for both tools, as well as black and flake8. They save a ton of time and they instantly boost the quality of your code fixing easy-to-avoid mistakes shaving off debugging time. I did a walk-through video the other day on how to use pre-commit here. One thing that puzzled me though was isort’s behavior on the following test module: When running isort through pre-commit it…