Commit 8f7e7543 authored by Hanno Schlichting's avatar Hanno Schlichting

Reorder imports

parent c4c3b0e6
...@@ -21,23 +21,24 @@ Zope2.startup() ...@@ -21,23 +21,24 @@ Zope2.startup()
from itertools import chain from itertools import chain
import random import random
import ExtensionClass
import OFS.Application
from AccessControl.SecurityManagement import setSecurityManager from AccessControl.SecurityManagement import setSecurityManager
from AccessControl.SecurityManagement import noSecurityManager from AccessControl.SecurityManagement import noSecurityManager
from AccessControl import Unauthorized from AccessControl import Unauthorized
from Acquisition import Implicit from Acquisition import Implicit
from Products.ZCatalog.Catalog import Catalog import ExtensionClass
from Products.ZCatalog.Catalog import CatalogError import OFS.Application
from ZODB.DB import DB from OFS.Folder import Folder as OFS_Folder
from ZODB.DemoStorage import DemoStorage
import transaction
from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex
from Products.PluginIndexes.KeywordIndex.KeywordIndex import KeywordIndex from Products.PluginIndexes.KeywordIndex.KeywordIndex import KeywordIndex
from Products.ZCTextIndex.OkapiIndex import OkapiIndex from Products.ZCTextIndex.OkapiIndex import OkapiIndex
from Products.ZCTextIndex.ZCTextIndex import PLexicon from Products.ZCTextIndex.ZCTextIndex import PLexicon
from Products.ZCTextIndex.ZCTextIndex import ZCTextIndex from Products.ZCTextIndex.ZCTextIndex import ZCTextIndex
from ZODB.DB import DB
from ZODB.DemoStorage import DemoStorage
import transaction
from Products.ZCatalog.Catalog import Catalog
from Products.ZCatalog.Catalog import CatalogError
def createDatabase(): def createDatabase():
...@@ -58,8 +59,6 @@ def sort(iterable): ...@@ -58,8 +59,6 @@ def sort(iterable):
L.sort() L.sort()
return L return L
from OFS.Folder import Folder as OFS_Folder
class Folder(OFS_Folder): class Folder(OFS_Folder):
def __init__(self, id): def __init__(self, id):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment