Skip to content

Commit df15c84

Browse files
committed
shorter comment for linting
1 parent 91967af commit df15c84

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sparkpost/transmissions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -254,11 +254,11 @@ def send(self, **kwargs):
254254

255255
payload = self._translate_keys(**kwargs)
256256
data = json.dumps(payload)
257-
# payload log dumping was added per request from Steve from Sparkpost support,
258-
# during debugging of DKIM signature validation problem with some messages
259-
# Case ID# 203488
260-
# Payload dumping can be disabled with usual python logging configuration
261-
logging.debug("Payload data: %s", data)
257+
# payload log dumping was added per request from Steve from Sparkpost
258+
# support, during debugging of DKIM signature validation problem with
259+
# some messages Case ID# 203488
260+
# Payload dumping can be disabled with usual python log configuration
261+
log.debug("Payload data: %s", data)
262262
results = self.request('POST', self.uri, data=data)
263263
return results
264264

0 commit comments

Comments
 (0)