Skip to content
Snippets Groups Projects
Verified Commit cc459120 authored by Jonathan Weth's avatar Jonathan Weth :keyboard:
Browse files

Fix import in check_app_configs_base_class

parent 7abbfefe
No related branches found
No related tags found
No related merge requests found
Pipeline #862 failed
......@@ -15,7 +15,7 @@ def check_app_configs_base_class(
results = []
if app_configs is None:
app_configs = django.apps.get_app_configs()
app_configs = django.apps.apps.get_app_configs()
for app_config in app_configs:
if app_config.name.startswith("aleksis.apps.") and not isinstance(app_config, AppConfig):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment