🎨(backend) use pylint error names instead of codes in disable comments
Replace pylint error codes with descriptive error names in disable comments to make suppressed warnings explicit and improve code readability.
This commit is contained in:
committed by
aleb_the_flash
parent
888fbbcd5f
commit
1f71bfc5d2
@@ -1,6 +1,6 @@
|
||||
"""LiveKit Events Service"""
|
||||
|
||||
# pylint: disable=E1101
|
||||
# pylint: disable=no-member
|
||||
|
||||
import uuid
|
||||
from enum import Enum
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
"""Participants management service for LiveKit rooms."""
|
||||
|
||||
# pylint: disable=R0913,E0611,R0917
|
||||
# pylint: disable=too-many-arguments,no-name-in-module,too-many-positional-arguments
|
||||
# ruff: noqa:PLR0913
|
||||
|
||||
import json
|
||||
|
||||
Reference in New Issue
Block a user