MCPcopy Index your code
hub / github.com/plotly/dash / setup

Method setup

dash/_hooks.py:109–118  ·  view source on GitHub ↗

Can be used to get a reference to the app after it is instantiated.

(self, priority: _t.Optional[int] = None, final: bool = False)

Source from the content-addressed store, hash-verified

107 return _wrap
108
109 def setup(self, priority: _t.Optional[int] = None, final: bool = False):
110 """
111 Can be used to get a reference to the app after it is instantiated.
112 """
113
114 def _setup(func: _t.Callable[[Dash], None]):
115 self.add_hook("setup", func, priority=priority, final=final)
116 return func
117
118 return _setup
119
120 def route(
121 self,

Callers 1

MnFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected