Skip to content

Commit

Permalink
Fix passing of kwargs to init_app
Browse files Browse the repository at this point in the history
  • Loading branch information
jethroguce committed Oct 2, 2019
1 parent a7e363a commit 888b9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_restplus/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def __init__(self, app=None, version='1.0', title=None, description=None,

if app is not None:
self.app = app
self.init_app(app)
self.init_app(app, **kwargs)
# super(Api, self).__init__(app, **kwargs)

def init_app(self, app, **kwargs):
Expand Down

0 comments on commit 888b9ae

Please sign in to comment.