Clear out the content-type cache.
(self)
| 116 | return ct |
| 117 | |
| 118 | def clear_cache(self): |
| 119 | """ |
| 120 | Clear out the content-type cache. |
| 121 | """ |
| 122 | self._cache.clear() |
| 123 | |
| 124 | def _add_to_cache(self, using, ct): |
| 125 | """Insert a ContentType into the cache.""" |
no test coverage detected