mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2025-02-16 19:00:34 +03:00
Fixed issue when INSTALLED_APPS settings contains AppConfig classes instead of module paths
7 lines
126 B
Python
7 lines
126 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UnitTestAppConfig(AppConfig):
|
|
name = 'tests'
|
|
verbose_name = "Unit test app"
|