mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2025-03-12 23:05:48 +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"
|