(self, handle)
| 15 | |
| 16 | class KaggleFileResolver(resolver.HttpResolverBase): |
| 17 | def is_supported(self, handle): |
| 18 | return _is_on_kaggle_notebook() and _is_kaggle_handle(handle) |
| 19 | |
| 20 | def __call__(self, handle): |
| 21 | m = long_url_pattern.match(handle) or short_url_pattern.match(handle) |
nothing calls this directly
no test coverage detected