Imports cleanup
authorThierry Florac <thierry.florac@onf.fr>
Mon, 03 Jun 2019 14:25:49 +0200
changeset 78 282bdc54b124
parent 77 2be615fc6da4
child 79 c4fb4f3219f1
Imports cleanup
src/pyams_alchemy/interfaces/__init__.py
--- a/src/pyams_alchemy/interfaces/__init__.py	Fri Dec 07 14:27:54 2018 +0100
+++ b/src/pyams_alchemy/interfaces/__init__.py	Mon Jun 03 14:25:49 2019 +0200
@@ -12,14 +12,8 @@
 
 __docformat__ = 'restructuredtext'
 
-
-# import standard library
-
-# import interfaces
 from zope.interface import Interface
-
-# import packages
-from zope.schema import TextLine, Bool, Int, Choice
+from zope.schema import Bool, Choice, Int, TextLine
 
 from pyams_alchemy import _
 
@@ -28,7 +22,7 @@
 
 
 class IAlchemyEngineUtility(Interface):
-    """SQLALchemy engine definition interface"""
+    """SQLAlchemy engine definition interface"""
 
     name = TextLine(title=_("Engine name"),
                     description=_("Keep empty if this engine is the default engine..."),