1#!/usr/bin/env python3
 2
 3from django.apps import AppConfig
 4
 5class CoreWidgetConfig(AppConfig):
 6    """This is needed because Django requires unique names for all apps.
 7
 8    We avoid a clash with any DU "widgets" directory.
 9    It's better to have this bit of code here and not in the DU so we only need to do it once."""
10    name = 'chart.widgets.apps'
11    label = 'core_widgets'