Skip to content

Commit

Permalink
Merge pull request #441 from wendyliga/patch-1
Browse files Browse the repository at this point in the history
Fix Missing method on Generic Webhook
  • Loading branch information
rdavydov authored Jan 16, 2024
2 parents adf9ccb + d46f530 commit 64d5999
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions TwitchChannelPointsMiner/classes/Webhook.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class Webhook(object):

def __init__(self, endpoint: str, method: str, events: list):
self.endpoint = endpoint
self.method = method
self.events = [str(e) for e in events]

def send(self, message: str, event: Events) -> None:
Expand Down

0 comments on commit 64d5999

Please sign in to comment.