Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
I was seeing some odd behavior where running pre-commit, adding the modified files, and then running pre-commit again would result making more modifications to some of the same files. This felt odd. You shouldn't have to run pre-commit more multiple times for it to eventually come to a final "solution". I believe the problem was because we are using the tool `black` to format things, but weren't registering the black profile with `isort` this lead to some conflicting formatting rules, and the two tools had to negotiate a few times before being both satisfied. Registering the profile `black` with `isort` resolved this problem.
- Loading branch information