(request: Request, package_name: str, fingerprinted_path: str)
| 520 | |
| 521 | def setup_component_suites(self, dash_app: Dash): |
| 522 | async def serve(request: Request, package_name: str, fingerprinted_path: str): |
| 523 | return self.serve_component_suites( |
| 524 | dash_app, package_name, fingerprinted_path, request |
| 525 | ) |
| 526 | |
| 527 | name = "_dash-component-suites/{package_name}/{fingerprinted_path:path}" |
| 528 | dash_app._add_url(name, serve) # pylint: disable=protected-access |
nothing calls this directly
no test coverage detected