Rename get_formats to get_output_formats for engines

This commit is contained in:
Brett Williams
2023-05-23 20:42:26 -05:00
parent 29e03eac87
commit 6c3d0e8f6e
4 changed files with 6 additions and 13 deletions

View File

@@ -253,8 +253,8 @@ class BaseRenderEngine(object):
return help_doc
@classmethod
def get_formats(cls):
raise NotImplementedError("get_formats not implemented")
def get_output_formats(cls):
raise NotImplementedError(f"get_output_formats not implemented for {cls.__name__}")
class RenderWorkerFactory: