Skip to content

Commit e89075a

Browse files
committed
Line length fix
1 parent 4619f4f commit e89075a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

pushover.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -166,13 +166,14 @@ def poll(self):
166166

167167
def cancel(self):
168168
"""If the message request has a priority of 2, Pushover will keep
169-
sending the same notification until it either reaches its ``expire`` value
170-
or is aknowledged by the client. Calling the :func:`cancel` function will
171-
cancel the notification early.
169+
sending the same notification until it either reaches its ``expire``
170+
value or is aknowledged by the client. Calling the :func:`cancel`
171+
function will cancel the notification early.
172172
"""
173173
if (self.receipt and not any(getattr(self, parameter)
174174
for parameter in self.parameters)):
175-
request = Request("post", RECEIPT_URL + self.receipt + "/cancel.json", {})
175+
request = Request("post", RECEIPT_URL + self.receipt
176+
+ "/cancel.json", {})
176177
return request
177178

178179

0 commit comments

Comments
 (0)