Remove deprecated pylint rules

https://github.com/PyCQA/pylint/pull/3571
https://github.com/PyCQA/pylint/pull/3577
This commit is contained in:
Iain Powrie 2022-06-13 21:30:24 +00:00
parent 55f7ab1d35
commit 75d3baccbd
2 changed files with 2 additions and 5 deletions

View File

@ -78,9 +78,7 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have # --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use "--disable=all --enable=classes # no Warning level messages displayed, use "--disable=all --enable=classes
# --disable=W". # --disable=W".
disable=C0330, disable=abstract-method,
C0326,
abstract-method,
attribute-defined-outside-init, attribute-defined-outside-init,
bad-inline-option, bad-inline-option,
bare-except, bare-except,
@ -102,7 +100,6 @@ disable=C0330,
no-else-break, no-else-break,
no-else-continue, no-else-continue,
no-else-return, no-else-return,
no-self-use,
no-value-for-parameter, no-value-for-parameter,
not-an-iterable, not-an-iterable,
protected-access, protected-access,

View File

@ -19,7 +19,7 @@ class WebSocketHelper:
def send_message( def send_message(
self, client, event_type: str, data self, client, event_type: str, data
): # pylint: disable=no-self-use ):
if client.check_auth(): if client.check_auth():
message = str(json.dumps({"event": event_type, "data": data})) message = str(json.dumps({"event": event_type, "data": data}))
client.write_message_helper(message) client.write_message_helper(message)