(self)
| 1093 | return datasets_with_spec |
| 1094 | |
| 1095 | def save_cache(self): |
| 1096 | for m in self._models.values(): |
| 1097 | if isinstance(m, caching.CachingModelWrapper): |
| 1098 | m.save_cache() |
| 1099 | |
| 1100 | def __call__(self, environ, start_response): |
| 1101 | """Implementation of the WSGI interface.""" |