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

Reorder imports

parent c4c3b0e6
......@@ -21,23 +21,24 @@ Zope2.startup()
from itertools import chain
import random
import ExtensionClass
import OFS.Application
from AccessControl.SecurityManagement import setSecurityManager
from AccessControl.SecurityManagement import noSecurityManager
from AccessControl import Unauthorized
from Acquisition import Implicit
from Products.ZCatalog.Catalog import Catalog
from Products.ZCatalog.Catalog import CatalogError
from ZODB.DB import DB
from ZODB.DemoStorage import DemoStorage
import transaction
import ExtensionClass
import OFS.Application
from OFS.Folder import Folder as OFS_Folder
from Products.PluginIndexes.FieldIndex.FieldIndex import FieldIndex
from Products.PluginIndexes.KeywordIndex.KeywordIndex import KeywordIndex
from Products.ZCTextIndex.OkapiIndex import OkapiIndex
from Products.ZCTextIndex.ZCTextIndex import PLexicon
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():
......@@ -58,8 +59,6 @@ def sort(iterable):
L.sort()
return L
from OFS.Folder import Folder as OFS_Folder
class Folder(OFS_Folder):
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