Dear Maintainer,
Thank you very much for sharing your valuable time
and skill to maintain Debian's csvkit package.
Here's a one-liner that causes its "csvclean"
command to complain, at least on my computer.
bash$ echo -e "1,2,3\n4,5,6\n7,8" | csvclean
/usr/lib/python3/dist-packages/unittest2/compatibility.py:143: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
1 error logged to stdin_err.csv
I'd like to think eliminating the warning is as
easy as importing the ABCs from 'collections.abc'.
Maybe you'd like to use my little one liner to
test fixes for csvkit and python3-csvkit.
Thanks again,
Kingsley
$ echo -e "1,2,3\n4,5,6\n7,8" | csvformat -d , -D , /usr/lib/python3/dist-packages/unittest2/compatibility.py:143: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working 1,2,3 4,5,6 7,8