Skip to content

Commit 7b2891e

Browse files
Small changes to pass flake8 validation.
1 parent 8b55226 commit 7b2891e

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

connectsdk/config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,8 @@ def check_credentials(api_url, api_key, products):
6161
'Not set value for `api_key` or `api_url`')
6262

6363
if products and not isinstance(products, (string_types, list)):
64-
raise TypeError('Products can be string or string list. Found type ' + type(products).__name__)
64+
raise TypeError('Products can be string or string list. Found type '
65+
+ type(products).__name__)
6566

6667
return
6768

example/example.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def process_request(self, request):
2626
raise FulfillmentInquire(params=[param])
2727

2828
# approve by ActivationTile
29-
return ActivationTileResponse(tile='\n # Welcome to Fallball!\n\nYes, '
30-
'you decided to have an account in our amazing service!')
29+
return ActivationTileResponse(tile='\n # Welcome to Fallball!\n\nYes, you decided '
30+
'to have an account in our amazing service!')
3131
# or
3232
# return TemplateResource().render(pk='TEMPLATE_ID', request_id=request.id)
3333

0 commit comments

Comments
 (0)