fix: Don't set default_app_config.

From the warning: Django now detects this configuration automatically.
You can remove default_app_config.

This also removes two warnings from shell startup.
This commit is contained in:
Feanil Patel
2023-09-01 14:41:34 -04:00
parent 6e28ba329e
commit 8691aa78e1
2 changed files with 0 additions and 4 deletions

View File

@@ -10,8 +10,6 @@ this package should be kept small, thin, and stateless.
"""
from edx_toggles.toggles import WaffleSwitch
default_app_config = 'openedx.core.djangoapps.programs.apps.ProgramsConfig'
PROGRAMS_WAFFLE_SWITCH_NAMESPACE = 'programs'
# This is meant to be enabled until https://openedx.atlassian.net/browse/LEARNER-5573 needs to be resolved

View File

@@ -1,2 +0,0 @@
# lint-amnesty, pylint: disable=missing-module-docstring
default_app_config = 'openedx.core.djangoapps.schedules.apps.SchedulesConfig'