Skip to content

Commit 3819819

Browse files
author
Vincent Vatelot
committed
refact: fix flake8 error
1 parent b92d374 commit 3819819

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

slackeventsapi/server.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def verify_signature(self, timestamp, signature):
5757
str.encode(self.signing_secret),
5858
req, hashlib.sha256
5959
).hexdigest()
60-
60+
6161
if hasattr(hmac, "compare_digest"):
6262
# Compare byte strings for Python 2
6363
if (sys.version_info[0] == 2):
@@ -121,6 +121,7 @@ class SlackEventAdapterException(Exception):
121121
"""
122122
Base exception for all errors raised by the SlackClient library
123123
"""
124+
124125
def __init__(self, msg=None):
125126
if msg is None:
126127
# default error message

0 commit comments

Comments
 (0)