Skip to content

Commit

Permalink
Disable conflicting rule between black and pylint
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-verclytte committed Jul 8, 2020
1 parent f7894f3 commit fdf2808
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .pylintrc
Expand Up @@ -138,7 +138,8 @@ disable=print-statement,
xreadlines-attribute,
deprecated-sys-function,
exception-escape,
comprehension-escape
comprehension-escape,
bad-continuation

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
2 changes: 1 addition & 1 deletion tests/lib/test_docker.py
Expand Up @@ -7,7 +7,7 @@
import nestor_api.lib.docker as docker


# pylint disable=no-self-use
# pylint: disable=no-self-use
class TestDockerLib(TestCase):
@patch("nestor_api.lib.docker.has_docker_image", autospec=True)
@patch("nestor_api.lib.docker.git", autospec=True)
Expand Down

0 comments on commit fdf2808

Please sign in to comment.