Skip to content

Commit b9f19a1

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

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: dash/development/base_component.py

+3-2
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, no-name-in-module
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)