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