diff options
Diffstat (limited to 'wee_slack.py')
-rw-r--r-- | wee_slack.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py index da10960..6acd29a 100644 --- a/wee_slack.py +++ b/wee_slack.py @@ -31,7 +31,11 @@ import string # See https://github.com/numpy/numpy/issues/11925 sys.modules["numpy"] = None -from websocket import ABNF, create_connection, WebSocketConnectionClosedException +from websocket import ( # noqa: E402 + ABNF, + create_connection, + WebSocketConnectionClosedException, +) try: basestring # Python 2 |