From bd05d7deb58ef33cc9c8b9b651cdfa02798cd3e6 Mon Sep 17 00:00:00 2001 From: David Ormsbee Date: Mon, 20 May 2024 15:03:13 -0400 Subject: [PATCH] fix: forgot to add get_or_create_component_type to the __all__ entry --- openedx_learning/apps/authoring/components/api.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openedx_learning/apps/authoring/components/api.py b/openedx_learning/apps/authoring/components/api.py index e28dec67..1839dc8c 100644 --- a/openedx_learning/apps/authoring/components/api.py +++ b/openedx_learning/apps/authoring/components/api.py @@ -27,6 +27,7 @@ # start with an underscore AND it is not in __all__, that function is considered # to be callable only by other apps in the authoring package. __all__ = [ + "get_or_create_component_type", "create_component", "create_component_version", "create_next_version",