Skip to content

Commit 331b1ad

Browse files
committed
release
1 parent fc32750 commit 331b1ad

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='python-amazon-sp-api',
5-
version='0.3.4',
5+
version='0.3.5',
66
install_requires=[
77
"requests",
88
"six~=1.15.0",

tests/api/notifications/test_notifications.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
from sp_api.api import Notifications
2-
from sp_api.base import SellingApiException, NotificationType
1+
from sp_api.api import Notifications, Reports
2+
from sp_api.base import SellingApiException, NotificationType, ReportType
33

44

55
def test_create_destination():
@@ -23,3 +23,4 @@ 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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,3 @@ def test_get_reports_3():
113113
res = Reports().get_reports(reportTypes=report_types, processingStatuses=processing_status)
114114
assert res.errors is None
115115

116-

0 commit comments

Comments
 (0)