Created
July 21, 2020 01:59
-
-
Save mjdargen/b33d84402f39ce2ed328ef0ea072eba8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Run this cell only once if you are having issues with your input/output... | |
| # window overflowing and scrolling to the left and right horizontally. | |
| # This code is a very hacky way of trying to adjust this. | |
| # It resizes colab output window so it doesn't overflow | |
| from IPython.display import HTML, display | |
| def set_css(): | |
| display(HTML(''' | |
| <style> | |
| pre { | |
| white-space: pre-wrap; | |
| } | |
| </style> | |
| ''')) | |
| get_ipython().events.register('pre_run_cell', set_css) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment