We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8414e1d commit ed8389aCopy full SHA for ed8389a
nicegui/context.py
@@ -21,8 +21,8 @@ def slot_stack(self) -> list[Slot]:
21
from .page import page # pylint: disable=import-outside-toplevel,cyclic-import
22
if not Client.instances: # in case some kind of dummy client is already created
23
core.script_mode = True
24
- core.script_client = Client(
25
- page('/'), _init_self_delete=False).__enter__() # pylint: disable=unnecessary-dunder-call
+ core.script_client = Client( # pylint: disable=unnecessary-dunder-call
+ page('/'), _init_self_delete=False).__enter__()
26
stack = Slot.get_stack()
27
return stack
28
0 commit comments