Skip to content

Commit

Permalink
Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
folix-01 committed Mar 22, 2024
1 parent cf1cb96 commit a74f552
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

@implementer(IExpandableElement)
@adapter(Interface, Interface)
class StickyBlocksGet(object):
class StickyBlocks(object):
def __init__(self, context, request):
self.context = context
self.request = request
Expand Down Expand Up @@ -50,8 +50,8 @@ def get_config(self):
)


class ExternalLinksGet(Service):
class StickyBlocksGet(Service):
def reply(self):
sticky_blocks = ExternalLinks(self.context, self.request)
sticky_blocks = StickyBlocks(self.context, self.request)

return sticky_blocks(expand=True)

0 comments on commit a74f552

Please sign in to comment.