Imports cleanup
authorThierry Florac <tflorac@ulthar.net>
Wed, 12 Sep 2018 12:41:49 +0200
changeset 941 1fca10d808a7
parent 940 ad7aa49ac7fc
child 942 d2d7b253cd59
Imports cleanup
src/pyams_content/component/paragraph/portlet/__init__.py
--- a/src/pyams_content/component/paragraph/portlet/__init__.py	Wed Sep 12 12:18:57 2018 +0200
+++ b/src/pyams_content/component/paragraph/portlet/__init__.py	Wed Sep 12 12:41:49 2018 +0200
@@ -15,23 +15,25 @@
 
 # import standard library
 
-from zope.interface import implementer
-from zope.schema.fieldproperty import FieldProperty
-
-from pyams_content import _
-# import packages
-from pyams_content.component.paragraph import BaseParagraph
 # import interfaces
 from pyams_content.component.paragraph.interfaces import IParagraphFactory, IParagraphContainerTarget, \
     IParagraphContainer
 from pyams_content.component.paragraph.portlet.interfaces import IParagraphContainerPortletSettings
 from pyams_i18n.interfaces import II18n
+from pyams_utils.interfaces import VIEW_PERMISSION
+
+# import packages
+from pyams_content.component.paragraph import BaseParagraph
 from pyams_portal.portlet import PortletSettings, portlet_config, Portlet
 from pyams_utils.factory import factory_config
-from pyams_utils.interfaces import VIEW_PERMISSION
 from pyams_utils.registry import get_global_registry
 from pyams_utils.request import check_request
 from pyams_utils.traversing import get_parent
+from zope.interface import implementer
+from zope.schema.fieldproperty import FieldProperty
+
+from pyams_content import _
+
 
 PARAGRAPH_CONTAINER_PORTLET_NAME = 'pyams_content.portlet.paragraphs'