Skip to content

Commit b19c2c4

Browse files
committed
disable pylint at block level instead of line
1 parent ef95c92 commit b19c2c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dash/development/base_component.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55

66
from .._utils import patch_collections_abc
77

8+
# pylint: disable=no-name-in-module, import-error
89
if six.PY2:
9-
from collections import MutableSequence # pylint: disable=E0611
10+
from collections import MutableSequence
1011
else:
11-
from collections.abc import MutableSequence # pylint: disable=E0611, E0401
12+
from collections.abc import MutableSequence
1213

1314

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

0 commit comments

Comments
 (0)