Skip to content

Commit ef95c92

Browse files
committed
disable single pylint errors using error number
1 parent d5dcd8f commit ef95c92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/development/base_component.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
from .._utils import patch_collections_abc
77

88
if six.PY2:
9-
from collections import MutableSequence # pylint: disable=no-name-in-module
9+
from collections import MutableSequence # pylint: disable=E0611
1010
else:
11-
from collections.abc import MutableSequence
11+
from collections.abc import MutableSequence # pylint: disable=E0611, E0401
1212

1313

1414
# pylint: disable=no-init,too-few-public-methods

0 commit comments

Comments
 (0)