Skip to content

Commit d89d68a

Browse files
committed
added eventBridge notification resource spec
1 parent 0319567 commit d89d68a

4 files changed

Lines changed: 9 additions & 2 deletions

File tree

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,13 @@ Documentation is available [here](https://python-amazon-sp-api.readthedocs.io/en
5959

6060
[![Documentation Status](https://img.shields.io/readthedocs/python-amazon-sp-api?style=for-the-badge)](https://python-amazon-sp-api.readthedocs.io/en/latest/?badge=latest)
6161

62+
### Support & Consultation
63+
64+
We offer consultation on everything SP-API related. Book your meeting here:
65+
66+
[![Book Meeting](https://img.shields.io/badge/meeting-book%20now-blue?style=for-the-badge)](https://calendly.com/saleweaver/)
67+
68+
6269
### DISCLAIMER
6370

6471
We are not affiliated with Amazon

sp_api/base/schedules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from enum import Enum
22

33

4-
class Schedules(Enum):
4+
class Schedules(str, Enum):
55
MINUTES_5 = "PT5M"
66
MINUTES_15 = "PT15M"
77
MINUTES_30 = "PT30M"

tests/api/notifications/test_notifications.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,3 @@ def test_get_subscriptions():
2323
res = Notifications().get_subscription(NotificationType.REPORT_PROCESSING_FINISHED)
2424
assert res.payload.get('destinationId') == 'TEST_CASE_200_DESTINATION_ID'
2525
assert res.payload.get('subscriptionId') == 'TEST_CASE_200_SUBSCRIPTION_ID'
26-

tests/api/reports/test_reports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pprint
2+
from datetime import datetime, timedelta
23

34
from sp_api import api
45
from sp_api.api import Reports

0 commit comments

Comments
 (0)