Just released: flake8-implicit-str-concat ๐
๐ฑ Add support for #Python 3.12-3.13, drop 3.7-3.8
๐ฑ Switch from Flit to Hatchling + hatch-vcs for dynamic versioning
๐ฑ Release to PyPI with Trusted Publishing
https://pypi.org/project/flake8-implicit-str-concat/0.5.0/
This #Flake8 plugin helps tidy up after Black:
$ cat 1.py
s = ('111'
'222')
$ black 1.py
reformatted 1.py
All done! โจ ๐ฐ โจ
1 file reformatted.
$ cat 1.py
s = "111" "222"
$ flake8 1.py
1.py:1:10: ISC001 implicitly concatenated string literals on one line