Arguments with a linter

This commit is contained in:
Matt 2021-05-16 21:48:37 -04:00
parent a4e024634f
commit 53aa27444b
1 changed files with 2 additions and 2 deletions

View File

@ -12,9 +12,9 @@ from helper import LazyLogger
# If numpy is installed, the websockets library tries to use it, and then # If numpy is installed, the websockets library tries to use it, and then
# kodi hard crashes for reasons I don't even want to pretend to understand # kodi hard crashes for reasons I don't even want to pretend to understand
import sys # noqa: E402 import sys # noqa: E402,I100
sys.modules['numpy'] = None sys.modules['numpy'] = None
import websocket # noqa: E402 import websocket # noqa: E402,I201
################################################################################################## ##################################################################################################