Skip to content

Commit 0cb0805

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

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dash/development/base_component.py

Lines changed: 2 additions & 2 deletions
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=E061
1010
else:
11-
from collections.abc import MutableSequence
11+
from collections.abc import MutableSequence # pylint: disable=E061, E0401
1212

1313

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

0 commit comments

Comments
 (0)