I have a function from a package imported into my Jupyter Notebook. Inside of the function is a print statement that prints a Pandas Dataframe. Let's say I can't (or don't want to) change the code of the function I'm importing. Is there a way to have the Pandas Dataframe being printed to not wrap over in the Jupyter output cell? I.e. how do I make it print on a single line such that I can scroll left to right?
I know about using Jupyter's display function instead of print, but the problem is that the print statement is in the package I'm importing and I can't change the package code.