Skip to content

Commit

Permalink
Fix kwargs unpacking in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gunthercox authored Jan 26, 2017
1 parent 934dead commit d71240a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/logic/create-a-logic-adapter.rst
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ information passed to it by the ChatBot class.
class MyLogicAdapter(LogicAdapter):
def __init__(self, **kwargs):
super(MyLogicAdapter, self).__init__(kwargs)
super(MyLogicAdapter, self).__init__(**kwargs)
self.api_key = kwargs.get('secret_key')
Expand Down

0 comments on commit d71240a

Please sign in to comment.