Skip to content

Commit

Permalink
flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Aug 28, 2016
1 parent fee4feb commit f02d4fb
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
1 change: 0 additions & 1 deletion src/Products/PluginIndexes/BooleanIndex/BooleanIndex.py
Expand Up @@ -21,7 +21,6 @@

from Products.PluginIndexes.common.UnIndex import _marker
from Products.PluginIndexes.common.UnIndex import UnIndex
from Products.ZCatalog.query import IndexQuery

LOG = getLogger('BooleanIndex.UnIndex')

Expand Down
22 changes: 12 additions & 10 deletions src/Products/PluginIndexes/common/UnIndex.py
Expand Up @@ -11,19 +11,21 @@
#
##############################################################################

from cgi import escape
from logging import getLogger
import sys

from Acquisition import aq_inner
from Acquisition import aq_parent
from Acquisition import aq_get

from BTrees.IIBTree import difference
from BTrees.IIBTree import intersection
from BTrees.IIBTree import IITreeSet
from BTrees.IIBTree import IISet
from BTrees.IIBTree import multiunion
from Acquisition import (
aq_inner,
aq_parent,
aq_get,
)
from BTrees.IIBTree import (
difference,
intersection,
IITreeSet,
IISet,
multiunion,
)
from BTrees.IOBTree import IOBTree
from BTrees.Length import Length
from BTrees.OOBTree import OOBTree
Expand Down

0 comments on commit f02d4fb

Please sign in to comment.