Skip to content

Commit 29fd839

Browse files
Minor style changes so flake8 stops complaining.
1 parent 838bf23 commit 29fd839

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

webhooks.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ def index():
8181
if not hmac.compare_digest(str(mac.hexdigest()), str(signature)):
8282
abort(403)
8383
else:
84-
# What compare_digest provides is protection against timing attacks; we
85-
# can live without this protection for a web-based application
84+
# What compare_digest provides is protection against timing
85+
# attacks; we can live without this protection for a web-based
86+
# application
8687
if not str(mac.hexdigest()) == str(signature):
8788
abort(403)
8889

0 commit comments

Comments
 (0)