src/pyams_utils/interfaces/tales.py
branchdev-tf
changeset 427 63284c98cdc1
parent 1 3f89629b9e54
--- a/src/pyams_utils/interfaces/tales.py	Sat Nov 23 01:24:11 2019 +0100
+++ b/src/pyams_utils/interfaces/tales.py	Sat Nov 23 14:57:24 2019 +0100
@@ -10,14 +10,15 @@
 # FOR A PARTICULAR PURPOSE.
 #
 
-__docformat__ = 'restructuredtext'
+"""PyAMS_utils.interfaces.tales module
 
-# import standard library
+TALES extensions are custom adapters which can be used to extend Chameleon and Zope templates.
+"""
 
-# import interfaces
+from zope.interface import Interface
 
-# import packages
-from zope.interface import Interface
+
+__docformat__ = 'restructuredtext'
 
 
 class ITALESExtension(Interface):