From 9562bdf5ebc4f624f50b37139eefbde20dcea16a Mon Sep 17 00:00:00 2001 From: irtazaakram Date: Thu, 24 Aug 2023 10:29:35 +0500 Subject: [PATCH] fix: requires_system_checks deprecation warning --- .../core/djangoapps/theming/management/commands/compile_sass.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/theming/management/commands/compile_sass.py b/openedx/core/djangoapps/theming/management/commands/compile_sass.py index 94a801526b..0e193fb101 100644 --- a/openedx/core/djangoapps/theming/management/commands/compile_sass.py +++ b/openedx/core/djangoapps/theming/management/commands/compile_sass.py @@ -18,7 +18,7 @@ class Command(BaseCommand): help = 'Compile and collect themed assets...' # NOTE (CCB): This allows us to compile static assets in Docker containers without database access. - requires_system_checks = False + requires_system_checks = [] def add_arguments(self, parser): """