(self, auth_type: str)
| 89 | } |
| 90 | |
| 91 | def get_auth_plugin(self, auth_type: str) -> Type[AuthPlugin]: |
| 92 | return self.get_auth_plugin_mapping()[auth_type] |
| 93 | |
| 94 | # Output processing |
| 95 | def get_formatters(self) -> List[Type[FormatterPlugin]]: |
no test coverage detected