Pyscript jupyter and pyscript.conf

I am trying to connect to my homeassistant from my jupyter notebook on my mac. I have previously been running the hass in docker with ip 192.168.1.10, but I have now installed hass in my k3s cluster. I therefore changed the config on the pyscript.conf file to the new ip, but when I start the notbook it keeps trying to connect to the old ip (192.168.110).
I have search the whole disk on my mac and found all the pyscript.conf files and linked them to one common file. Still it tries to connect to the old IP.
When I do jupyter kernelspec list and jupyter pyscript list it seems correct

hass_host = homeassistant
    hass_url = http://192.168.1.201:30123
    hass_token = eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiI3OGU1OGFlZTRmYjI0YjJmOWQ5NjNlZDBhNWE4N2EyMiIsImlhdCI6MTcwMDM4NzU1NiwiZXhwIjoyMDE1NzQ3NTU2fQ.W7NsNECyibTyrZJHErpxomB1X_VrKuWBu812177xP7c
    hass_proxy = None

but it stills tries to connect to the old IP.

Where is the old confg hidden and why is jupyter using another config than it shows when I do the jupyter pyscript list?