cohere-ai / notebooks

Code examples and jupyter notebooks for the Cohere Platform
MIT License
451 stars 120 forks source link

TypeError: set_css() takes 0 positional arguments but 1 was given #205

Open msusol opened 1 month ago

msusol commented 1 month ago

source: notebooks/llmu/Introduction_to_RAG.ipynb

#@title Enable text wrapping in Google Colab

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)

running the notebook in IntelliJ yields

Error in callback <function set_css at 0x1042df380> (for pre_run_cell), with arguments args (<ExecutionInfo object at 10425b500, raw_cell="from IPython.display import HTML, display

def set.." store_history=True silent=False shell_futures=True cell_id=None>,),kwargs {}:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
TypeError: set_css() takes 0 positional arguments but 1 was given
msusol commented 1 month ago

I see in another notebook in LLMU #@title Enable text wrapping in Google Colab and I need to clarify I am using IntelliJ to run the notebooks. No issues when running in Colab.