Skip to content
This repository has been archived by the owner on Aug 22, 2019. It is now read-only.

Commit

Permalink
add self to super
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghostvv committed Aug 30, 2018
1 parent bc64f98 commit b66f567
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rasa_core/channels/callback.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ def __init__(self, endpoint):
# type: (EndpointConfig) -> None

self.callback_endpoint = endpoint
super(CallbackOutput).__init__()
super(CallbackOutput, self).__init__()

def _persist_message(self, message):
super(CallbackOutput)._persist_message(message)
super(CallbackOutput, self)._persist_message(message)

r = self.callback_endpoint.request("post",
content_type="application/json",
Expand Down

0 comments on commit b66f567

Please sign in to comment.