src/pyams_utils/vocabulary.py
changeset 367 2c95d34496f5
parent 292 b338586588ad
child 408 cf2304af0fab
--- a/src/pyams_utils/vocabulary.py	Wed Jun 12 20:06:45 2019 +0200
+++ b/src/pyams_utils/vocabulary.py	Fri Jun 14 12:41:06 2019 +0200
@@ -10,21 +10,22 @@
 # FOR A PARTICULAR PURPOSE.
 #
 
+"""PyAMS_utils.vocabulary module
+
+This module is used to handle vocabularies.
+"""
+
 __docformat__ = 'restructuredtext'
 
-
-# import standard library
 import logging
-logger = logging.getLogger('PyAMS (utils)')
 
 import venusian
-
-# import interfaces
+from zope.interface import directlyProvides
 from zope.schema.interfaces import IVocabularyFactory
+from zope.schema.vocabulary import getVocabularyRegistry
 
-# import packages
-from zope.interface import directlyProvides
-from zope.schema.vocabulary import getVocabularyRegistry
+
+logger = logging.getLogger('PyAMS (utils)')
 
 
 class vocabulary_config: