Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
Revert "python3 compatibility"
Browse files Browse the repository at this point in the history
  • Loading branch information
janjaapdriessen committed Sep 28, 2016
1 parent f4672c7 commit 2d6bb3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grokcore/rest/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"""
import zope.location

from zope.interface import implementer
from zope import interface
from grokcore.view import ViewSupport
from grokcore.rest.interfaces import IREST


@implementer(IREST)
class REST(zope.location.Location, ViewSupport):
"""Base class for REST views in Grok applications."""
interface.implements(IREST)

def __init__(self, context, request):
self.context = self.__parent__ = context
Expand Down

0 comments on commit 2d6bb3a

Please sign in to comment.