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
Then open test.csv in JupyterLab, modify the content of a cell, and save.
Removing the line ending on the last line before opening in JupyterLab seems to fix it, but having a CRLF at the end of the last row is allowed by RFC 4180. That is,
cat -e test.csv
a,b^M$
1,3^M$
2,4^M$
results in an extra line, whereas
cat -e test.csv
a,b^M$
1,3^M$
2,4
works as expected.
Expected behavior
I expect no extra row added when saving a csv.
Context
Python package version: 0.6.1
Extension version: 0.6.1
Operating System and its version: Ubuntu 20.04
Browser and its version: Firefox 109.0.1
The text was updated successfully, but these errors were encountered:
Description
Saving a csv prepared with R or pandas adds an extra row at the bottom. That is, a csv like
becomes
Reproduce
Make a csv with R (or pandas).
Then open
test.csv
in JupyterLab, modify the content of a cell, and save.Removing the line ending on the last line before opening in JupyterLab seems to fix it, but having a CRLF at the end of the last row is allowed by RFC 4180. That is,
results in an extra line, whereas
works as expected.
Expected behavior
I expect no extra row added when saving a csv.
Context
The text was updated successfully, but these errors were encountered: