You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RemovedInDjango41Warning: 'massadmin' defines default_app_config = 'massadmin.apps.MassAdminConfig'. Django now detects this configuration automatically. You can remove default_app_config. app_config = AppConfig.create(entry)
add code into massadmin/__init__.py:
import django
if django.VERSION < (3, 2):
default_app_config = 'massadmin.apps.MassAdminConfig'
The text was updated successfully, but these errors were encountered:
Please fix warning:
RemovedInDjango41Warning: 'massadmin' defines default_app_config = 'massadmin.apps.MassAdminConfig'. Django now detects this configuration automatically. You can remove default_app_config. app_config = AppConfig.create(entry)
add code into
massadmin/__init__.py
:The text was updated successfully, but these errors were encountered: