Issue Description
Our team just upgraded major versions from black==23.1.0 to black==24.1.1 (https://github.com/psf/black/releases/tag/24.1.1) which was just released two days ago. This introduces a conflict with reorder-python-imports (which we also use) around the introduction of new blank lines after a module-level docstring. black wants to introduce a new line between the docstring and the first line of code. reorder-python-imports wants that line to be removed.
It appears that that is the lone issue. Video of this in action.
Steps To Reproduce
- Upgrade your local version of
black to their most recent release.
- Modify a file with a module level docstring.
- Run the
black command locally.
- Run the
reorder-python-imports command locally.
- See the conflict.
Thanks for the assist and this fantastic tool; LMK if there is anything else I can do to help.
Issue Description
Our team just upgraded major versions from
black==23.1.0toblack==24.1.1(https://github.com/psf/black/releases/tag/24.1.1) which was just released two days ago. This introduces a conflict withreorder-python-imports(which we also use) around the introduction of new blank lines after a module-level docstring.blackwants to introduce a new line between the docstring and the first line of code.reorder-python-importswants that line to be removed.It appears that that is the lone issue. Video of this in action.
Steps To Reproduce
blackto their most recent release.blackcommand locally.reorder-python-importscommand locally.Thanks for the assist and this fantastic tool; LMK if there is anything else I can do to help.