I am working on adding pytest rules for pip. Turning on PT006 with lint.flake8-pytest-style.parametrize-names-type set to csv produces a slight styling difference on autofix of tests using tuple or list compared to pip's standard style.
It produces "one,two,three" instead of "one, two, three".
Would any of the following requests be considered?
- The autofix of tuple or list to csv converts to
one, two, three, four not one,two,three,four
- This be the standard style so any csv string, e.g.
one,two ,three, four gets neatly formatted to one, two, three, four
- An additional option to enforce either of these
I am working on adding pytest rules for pip. Turning on PT006 with lint.flake8-pytest-style.parametrize-names-type set to csv produces a slight styling difference on autofix of tests using tuple or list compared to pip's standard style.
It produces "one,two,three" instead of "one, two, three".
Would any of the following requests be considered?
one, two, three, fournotone,two,three,fourone,two ,three, fourgets neatly formatted toone, two, three, four