(deps)
| 255 | |
| 256 | |
| 257 | def validate_background_inputs(deps): |
| 258 | for dep in deps: |
| 259 | if dep.has_wildcard(): |
| 260 | raise WildcardInLongCallback( |
| 261 | f""" |
| 262 | background callbacks does not support dependencies with |
| 263 | pattern-matching ids |
| 264 | Received: {repr(dep)}\n""" |
| 265 | ) |
| 266 | |
| 267 | |
| 268 | ClientsideFuncType = Union[str, ClientsideFunction] |
no test coverage detected
searching dependent graphs…