Ben Elliston
Ben Elliston
This was fixed somewhere along the way. Works in Pylint 2.14.5.
`isort`, shown with `isort --show-config`.
`isort --version` says 5.13.2. `isort --show-config | grep line_length` says: ``` "line_length": 79, ``` Your bash snippet works for me, but if I remove the explicit `--line-length` argument and rely...
```bash python3 -m venv myenv . myenv/bin/activate pip install isort printf "from nemo.polygons import (WILDCARD, cst_limit, offshore_wind_limit,\n pv_limit, wind_limit)" | isort --profile=black - ```
Many thanks for getting to the bottom of this.
I'm not a big fan of PT009. I want to use `unittest` as it's in the Python standard library and doesn't require any additional packages. I'd rather write my tests...
A related issue is when using multi-line strings like so: ``` s = f'{x}' \ '{y}' ``` Without thinking too hard, my initial assumption was that the second string wouldn't...