# HG changeset patch # User Thierry Florac # Date 1559564749 -7200 # Node ID 282bdc54b124c179e40696c2130ac7539cd40cd4 # Parent 2be615fc6da4963c24519fca47f6a549af627c6d Imports cleanup diff -r 2be615fc6da4 -r 282bdc54b124 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..."),