pymatgen
pymatgen copied to clipboard
black changes all quotes to double, flake8 complains about them
Describe the bug Conflict between blake and flake8 settings.
To Reproduce Steps to reproduce the behavior:
- Commit changes with
git commit
- pre-commit is triggered
- black (I think) changes all quotes to double "
- flake8 complains about the double quotes with: Q000 Remove bad quotes
Recommend adding in setup.cfg (according to [https://github.com/zheller/flake8-quotes]) [flake8] inline-quotes = double
This stops the Q000 ...