We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5dcd8f commit ef95c92Copy full SHA for ef95c92
dash/development/base_component.py
@@ -6,9 +6,9 @@
6
from .._utils import patch_collections_abc
7
8
if six.PY2:
9
- from collections import MutableSequence # pylint: disable=no-name-in-module
+ from collections import MutableSequence # pylint: disable=E0611
10
else:
11
- from collections.abc import MutableSequence
+ from collections.abc import MutableSequence # pylint: disable=E0611, E0401
12
13
14
# pylint: disable=no-init,too-few-public-methods
0 commit comments