We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Any notebook; the following commands:
$ jupytext --to py example.ipynb $ diff example.py <(jupytext --to py -o- example.ipynb) 28a29 >
diff exits non-cleanly as -o- adds an additional newline. I believe end='' or sys.stdout.write()* here might fix it.
-o-
end=''
sys.stdout.write()
jupytext/jupytext/cli.py
Line 42 in 960a962
* Print function won't work without importing from __future__.
The text was updated successfully, but these errors were encountered:
Also this line in tests! 😆
jupytext/tests/test_cli.py
Line 50 in 960a962
Sorry, something went wrong.
Thanks @kernc for the pull request, it is certainly better without the new line!
No branches or pull requests
Any notebook; the following commands:
diff exits non-cleanly as
-o-
adds an additional newline. I believeend=''
orsys.stdout.write()
* here might fix it.jupytext/jupytext/cli.py
Line 42 in 960a962
* Print function won't work without importing from __future__.
The text was updated successfully, but these errors were encountered: