summaryrefslogtreecommitdiff
path: root/src/zope/tal/interfaces.py
diff options
context:
space:
mode:
authorMichael Howitz <mh@gocept.com>2023-01-06 06:54:21 +0100
committerGitHub <noreply@github.com>2023-01-06 06:54:21 +0100
commitd4282a8eaba4ba843b07f088e9443340833cdff6 (patch)
tree9446f9756ff1424be9f8ec6a4429d2f65f68a2c2 /src/zope/tal/interfaces.py
parent1a7405a1b621b7080450f55f77119bd346cab404 (diff)
downloadzope-tal-d4282a8eaba4ba843b07f088e9443340833cdff6.tar.gz
Config with pure python template (#19)
* Drop support for Python 2.7, 3.5, 3.6. * Add support for Python 3.11.
Diffstat (limited to 'src/zope/tal/interfaces.py')
-rw-r--r--src/zope/tal/interfaces.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zope/tal/interfaces.py b/src/zope/tal/interfaces.py
index bd6286a..311bc76 100644
--- a/src/zope/tal/interfaces.py
+++ b/src/zope/tal/interfaces.py
@@ -22,7 +22,8 @@ most commonly used are :class:`zope.tales.tales.ExpressionEngine`,
:class:`zope.tales.tales.Context`, and
:class:`zope.tales.tales.Iterator`, respectively.
"""
-from zope.interface import Attribute, Interface
+from zope.interface import Attribute
+from zope.interface import Interface
class ITALExpressionCompiler(Interface):