Skip to content

Commit e78e57f

Browse files
kirby-jobberRoach
authored andcommitted
Pass all keyword arguments through to flask server (#20)
1 parent 242c8e8 commit e78e57f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

slackeventsapi/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ def __init__(self, verification_token, endpoint="/slack/events"):
1010
self.verification_token = verification_token
1111
self.server = SlackServer(verification_token, endpoint, self)
1212

13-
def start(self, host='127.0.0.1', port=None, debug=False):
14-
self.server.run(host=host, port=port, debug=debug)
13+
def start(self, host='127.0.0.1', port=None, debug=False, **kwargs):
14+
self.server.run(host=host, port=port, debug=debug, **kwargs)

0 commit comments

Comments
 (0)