@@ -7,7 +7,8 @@ class SuppressionList(Resource):
77 """
88 SuppressionList class used to search, get and modify suppression status.
99 For detailed request and response formats, see the `Suppresion List API
10- documentation<https://www.sparkpost.com/api#/reference/suppression-list>`_.
10+ documentation
11+ <https://www.sparkpost.com/api#/reference/suppression-list>`_.
1112 """
1213
1314 key = 'suppression-list'
@@ -65,10 +66,10 @@ def create(self, entry):
6566
6667 :param dict|list status: If dict it is a single entry to create
6768 ``{
68- 'email': 'test@test.com',
69- 'transactional': True,
70- 'non_transactional': True,
71- 'description': 'Test description'
69+ 'email': 'test@test.com',
70+ 'transactional': True,
71+ 'non_transactional': True,
72+ 'description': 'Test description'
7273 }``, if list it is multiple entries to create
7374
7475 :returns: a ``dict`` with a message
@@ -82,10 +83,10 @@ def update(self, entry):
8283
8384 :param dict|list status: If dict it is a single entry to update
8485 ``{
85- 'email': 'test@test.com',
86- 'transactional': True,
87- 'non_transactional': True,
88- 'description': 'Test description'
86+ 'email': 'test@test.com',
87+ 'transactional': True,
88+ 'non_transactional': True,
89+ 'description': 'Test description'
8990 }``, if list it is multiple entries to update
9091
9192 :returns: a ``dict`` with a message
0 commit comments