Skip to content

Commit

Permalink
fix broken imports for Plone 6.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauer authored and Gomez committed Oct 24, 2023
1 parent 0afac9f commit 51dfec7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/collective/eeafaceted/z3ctable/browser/views.py
Expand Up @@ -11,7 +11,7 @@
from z3c.table.table import SequenceTable
from zope.component import getAdapters
from zope.component import queryMultiAdapter
from zope.interface import implements, implementer
from zope.interface import implementer

import html
import logging
Expand Down
2 changes: 1 addition & 1 deletion src/collective/eeafaceted/z3ctable/columns.py
Expand Up @@ -18,7 +18,7 @@
from zope.component import getMultiAdapter
from zope.component import queryUtility
from zope.i18n import translate
from zope.interface import implements, implementer
from zope.interface import implementer
from zope.schema.interfaces import IVocabularyFactory

import html
Expand Down
6 changes: 3 additions & 3 deletions src/collective/eeafaceted/z3ctable/tests/vocabularies.py
@@ -1,14 +1,14 @@
# encoding: utf-8

from plone.memoize.instance import memoize
from zope.interface import implements
from zope.interface import implementer
from zope.schema.interfaces import IVocabularyFactory
from zope.schema.vocabulary import SimpleTerm
from zope.schema.vocabulary import SimpleVocabulary


@implementer(IVocabularyFactory)
class TestingVocabulary(object):
implements(IVocabularyFactory)

@memoize
def __call__(self, context):
Expand All @@ -23,8 +23,8 @@ def __call__(self, context):
TestingVocabularyFactory = TestingVocabulary()


@implementer(IVocabularyFactory)
class TestingFullVocabulary(object):
implements(IVocabularyFactory)

@memoize
def __call__(self, context):
Expand Down

0 comments on commit 51dfec7

Please sign in to comment.