Clean imports in code

In some part in the code we import objects. In the Openstack style
guidelines they recommend to import only modules.

http://docs.openstack.org/developer/hacking/#imports

Change-Id: Ib9ad9ecfc1aabd36700a3f2ce913f611ac3811c2
This commit is contained in:
Nguyen Hung Phuong
2016-09-15 09:46:36 +07:00
parent 7c90c46990
commit 4547c54ea0

View File

@@ -23,9 +23,9 @@
# configuration label and avoid this conflict.
#
from django.apps import AppConfig
from django import apps
class Config(AppConfig):
class Config(apps.AppConfig):
name = 'manila_ui.dashboards.project'
label = 'manila_project'