From eee9837ae8555b8d62fa9c60357985a8063d9f13 Mon Sep 17 00:00:00 2001 From: Tim McCormack Date: Wed, 3 Jan 2024 10:04:10 -0500 Subject: [PATCH] docs: Fix code example to include PluginSignals import (#371) --- .../plugins/docs/how_tos/how_to_create_a_plugin_app.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edx_django_utils/plugins/docs/how_tos/how_to_create_a_plugin_app.rst b/edx_django_utils/plugins/docs/how_tos/how_to_create_a_plugin_app.rst index ef3287eb..0fd9e72f 100644 --- a/edx_django_utils/plugins/docs/how_tos/how_to_create_a_plugin_app.rst +++ b/edx_django_utils/plugins/docs/how_tos/how_to_create_a_plugin_app.rst @@ -38,7 +38,7 @@ class:: from django.apps import AppConfig from edx_django_utils.plugins.constants import ( - PluginURLs, PluginSettings, PluginContexts + PluginURLs, PluginSettings, PluginSignals, PluginContexts ) class MyAppConfig(AppConfig): name = 'full_python_path.my_app'