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