[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces/workflow - __init__.py:1.14

Martijn Faassen m.faassen@vet.uu.nl
Thu, 1 May 2003 15:35:54 -0400


Update of /cvs-repository/Zope3/src/zope/app/interfaces/workflow
In directory cvs.zope.org:/tmp/cvs-serv30407/zope/app/interfaces/workflow

Modified Files:
	__init__.py 
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)


=== Zope3/src/zope/app/interfaces/workflow/__init__.py 1.13 => 1.14 ===
--- Zope3/src/zope/app/interfaces/workflow/__init__.py:1.13	Wed Apr  9 14:34:29 2003
+++ Zope3/src/zope/app/interfaces/workflow/__init__.py	Thu May  1 15:35:23 2003
@@ -19,14 +19,11 @@
 
 from zope.interface import Interface
 from zope.interface import Attribute
-from zope.interface.common.mapping import IEnumerableMapping
 from zope.app.interfaces.container import IContainer
 from zope.app.interfaces.services.configuration \
      import INamedComponentConfiguration
 from zope.app.interfaces.services.configuration import ComponentPath
 
-
-
 class IWorkflowService(Interface):
     """Workflow service.
 
@@ -50,7 +47,6 @@
     def createProcessInstance(definition_name):
         """Create a process instance from a process definition.
         """
-
 
 
 class IProcessDefinitionConfiguration(INamedComponentConfiguration):