We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242c8e8 commit e78e57fCopy full SHA for e78e57f
slackeventsapi/__init__.py
@@ -10,5 +10,5 @@ def __init__(self, verification_token, endpoint="/slack/events"):
10
self.verification_token = verification_token
11
self.server = SlackServer(verification_token, endpoint, self)
12
13
- def start(self, host='127.0.0.1', port=None, debug=False):
14
- self.server.run(host=host, port=port, debug=debug)
+ def start(self, host='127.0.0.1', port=None, debug=False, **kwargs):
+ self.server.run(host=host, port=port, debug=debug, **kwargs)
0 commit comments