From 70648cd2957ec1d7611b52c3ed6c7dcdad8fdf01 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Mon, 6 Feb 2023 14:28:48 +0100 Subject: [PATCH 1/3] Fix override_settings issue --- django_select2/apps.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django_select2/apps.py b/django_select2/apps.py index 921269b6..98905972 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -7,3 +7,6 @@ class Select2AppConfig(AppConfig): name = "django_select2" verbose_name = "Select2" + + def ready(self): + from . import conf From 9897e04d36c42b5a5134531b28e235dc1ff25b8b Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Sat, 11 Feb 2023 17:25:24 +0100 Subject: [PATCH 2/3] Update django_select2/apps.py Co-authored-by: Johannes Maron --- django_select2/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_select2/apps.py b/django_select2/apps.py index 98905972..052473a5 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -9,4 +9,4 @@ class Select2AppConfig(AppConfig): verbose_name = "Select2" def ready(self): - from . import conf + from . import conf. # noqa From bb159752b5be0bb1336592a2ed06d9996ef0e7a7 Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Sat, 11 Feb 2023 18:43:55 +0100 Subject: [PATCH 3/3] Fix extraneous dot --- django_select2/apps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_select2/apps.py b/django_select2/apps.py index 052473a5..77b053ac 100644 --- a/django_select2/apps.py +++ b/django_select2/apps.py @@ -9,4 +9,4 @@ class Select2AppConfig(AppConfig): verbose_name = "Select2" def ready(self): - from . import conf. # noqa + from . import conf # noqa