(self, context)
| 236 | return context.get_response() |
| 237 | |
| 238 | def get_cdn(self, context): |
| 239 | if self.cdn is True and context.request_url_parameter('_pywebio_cdn', '') == 'false': |
| 240 | return False |
| 241 | return self.cdn |
| 242 | |
| 243 | def read_event_data(self, context: HttpContext) -> List[Dict]: |
| 244 | try: |
no test coverage detected