Skip to content

Commit

Permalink
make python3 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel Riolo committed Apr 21, 2015
1 parent adb0cee commit 625b69b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grokcore/component/components.py
Expand Up @@ -13,7 +13,7 @@
##############################################################################
"""Grok components"""

from zope.interface import implements
from zope.interface import implementer

from grokcore.component.interfaces import IContext

Expand Down Expand Up @@ -104,9 +104,9 @@ class MultiSubscription(object):
"""


@implementer(IContext)
class Context(object):
"""Subclasses of this will automatically be found as potential contexts for
adapters and other types of context-dependent components.
"""
implements(IContext)

0 comments on commit 625b69b

Please sign in to comment.