src/pyams_utils/interfaces/intids.py
branchdev-tf
changeset 427 63284c98cdc1
parent 46 c9a917e7875c
--- a/src/pyams_utils/interfaces/intids.py	Sat Nov 23 01:24:11 2019 +0100
+++ b/src/pyams_utils/interfaces/intids.py	Sat Nov 23 14:57:24 2019 +0100
@@ -10,15 +10,16 @@
 # FOR A PARTICULAR PURPOSE.
 #
 
-__docformat__ = 'restructuredtext'
+"""PyAMS_utils.interfaces.intids module
 
-# import standard packages
+Small set of interfaces used by IIntIds utilities.
+"""
 
-# import interfaces
 from zope.interface import Interface
+from zope.schema import Int, TextLine
 
-# import packages
-from zope.schema import TextLine, Int
+
+__docformat__ = 'restructuredtext'
 
 
 #
@@ -35,5 +36,6 @@
     """Interface used to get unique ID of an object"""
 
     oid = TextLine(title="Unique ID",
-                   description="Globally unique identifier of this object can be used to create internal links",
+                   description="Globally unique identifier of this object can be used to create "
+                               "internal links",
                    readonly=True)