Skip to content

Commit

Permalink
disable pylint at block level instead of line
Browse files Browse the repository at this point in the history
  • Loading branch information
mkcor committed Mar 29, 2019
1 parent ef95c92 commit b19c2c4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dash/development/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@

from .._utils import patch_collections_abc

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


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

0 comments on commit b19c2c4

Please sign in to comment.