You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dash v1.5.0, instantiating or importing an "app" (i.e. app = dash.Dash(__name__)) before importing a package with _force_eager_loading = True defined in its __init__.py file will still result in lazy loading. Expected behavior is that eager loading will be forced, as implied by the flag name. This can result in missing dependencies, e.g. plotly.js:
click for obligatory `pip list | grep dash`
In
dash v1.5.0
, instantiating or importing an "app" (i.e.app = dash.Dash(__name__)
) before importing a package with_force_eager_loading = True
defined in its__init__.py
file will still result in lazy loading. Expected behavior is that eager loading will be forced, as implied by the flag name. This can result in missing dependencies, e.g.plotly.js
:Confirmed as reproducible by @Marc-Andre-Rivet
The text was updated successfully, but these errors were encountered: