Is your feature request related to a problem? Please describe.
If a job is running, the gr.Load() adds its tasks to the queue, kind of ruining the goal of running code at startup.
Describe the solution you'd like
I would like to be able to do a queue=False for blocks.load() while still leave the queue active globally for the app, in the same way I can do it for .click() or .update() functions
Is your feature request related to a problem? Please describe.
If a job is running, the gr.Load() adds its tasks to the queue, kind of ruining the goal of running code at startup.
Describe the solution you'd like
I would like to be able to do a
queue=Falseforblocks.load()while still leave the queue active globally for the app, in the same way I can do it for.click()or.update()functions