(self)
| 164 | self.server.after_request(func) |
| 165 | |
| 166 | def has_request_context(self) -> bool: |
| 167 | return has_request_context() |
| 168 | |
| 169 | def run(self, dash_app: Dash, host: str, port: int, debug: bool, **kwargs: Any): |
| 170 | self.server.run(host=host, port=port, debug=debug, **kwargs) |
no outgoing calls