mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-10 19:36:38 +03:00
12069db14e
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"
|