You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It should be easy to write a little sed script to auto-fix/format this:
codespell_lib/tests/test_dictionary.py:80: in test_dictionary_formatting
raise AssertionError(msg)
E AssertionError:
E error disturbative: multiple corrections must end with trailing ","
sed '/,/s/,*$/,/' filename
This should:
on all lines with commas
remove trailing commas
and add a single trailing commas
The text was updated successfully, but these errors were encountered:
Actually, any item after the last comma is supposed to be a comment. I'm not a huge fan of this functionality, but I think we shouldn't modify this until we have a better and documented way to comment.
It should be easy to write a little sed script to auto-fix/format this:
This should:
The text was updated successfully, but these errors were encountered: