Skip to content

Commit

Permalink
disable single pylint errors using error number
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcor committed Mar 29, 2019
1 parent d5dcd8f commit ef95c92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dash/development/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
from .._utils import patch_collections_abc

if six.PY2:
from collections import MutableSequence # pylint: disable=no-name-in-module
from collections import MutableSequence # pylint: disable=E0611
else:
from collections.abc import MutableSequence
from collections.abc import MutableSequence # pylint: disable=E0611, E0401


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

0 comments on commit ef95c92

Please sign in to comment.