Skip to content

Commit 365f25e

Browse files
committed
VED-79: lint issues
1 parent 7f39e86 commit 365f25e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mns_subscription/src/mns_service.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,9 @@ def __init__(self, authenticator: AppRestrictedAuth):
4646

4747
def subscribe_notification(self) -> dict | None:
4848

49-
response = requests.post(MNS_URL, headers=self.request_headers, data=json.dumps(self.subscription_payload),timeout=15)
49+
response = requests.post(
50+
MNS_URL, headers=self.request_headers,
51+
data=json.dumps(self.subscription_payload), timeout=15)
5052
if response.status_code in (200, 201):
5153
return response.json()
5254
else:

0 commit comments

Comments
 (0)