(self)
| 60 | mimebundle_formatter = ForwardDeclaredInstance('FormatterABC') |
| 61 | @default('mimebundle_formatter') |
| 62 | def _default_mime_formatter(self): |
| 63 | return MimeBundleFormatter(parent=self) |
| 64 | |
| 65 | # A dict of formatter whose keys are format types (MIME types) and whose |
| 66 | # values are subclasses of BaseFormatter. |
nothing calls this directly
no test coverage detected