- Fix webhooks
This commit is contained in:
Sean Whalen
2025-06-02 16:52:48 -04:00
parent 607a091a5f
commit 7c45812284
3 changed files with 8 additions and 2 deletions

View File

@@ -1,6 +1,11 @@
Changelog
=========
8.18.4
------
- Fix webhooks
8.18.3
------

View File

@@ -1,2 +1,2 @@
__version__ = "8.18.3"
__version__ = "8.18.4"
USER_AGENT = f"parsedmarc/{__version__}"

View File

@@ -1,6 +1,7 @@
import requests
from parsedmarc import logger, USER_AGENT
from parsedmarc import logger
from parsedmarc.constants import USER_AGENT
class WebhookClient(object):