Ryan Waldheim
Ryan Waldheim
**Describe your context** Github Action running on `ubuntu-latest` and unit tests run with: ```bash pytest --capture=no --headless [package] ``` **Result of `pip list | grep dash`** ``` dash 2.15.0 dash_ag_grid...
Expose `NoUpdate` at top-level dash. The primary application is for type hinting, allowing for comprehensive type checking of dash callbacks. See: #2799 ## Contributor Checklist - [X] Expose `NoUpdate` from...
Enable more comprehensive type hinting of dash callback methods by exposing `dash._callback.NoUpdate`. Given `callback()` and `clientside_callback()` are already imported up, is there any reason not to also expose `NoUpdate`? [A...
Resolves #3090. I was able to reproduce the error using a minimal example inferred by code provided by the issue author: ```python from types import SimpleNamespace import dash_bootstrap_components as dbc...