Skip to content

Commit fdf2808

Browse files
Disable conflicting rule between black and pylint
See : psf/black#48 pylint-dev/pylint#289
1 parent f7894f3 commit fdf2808

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.pylintrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ disable=print-statement,
138138
xreadlines-attribute,
139139
deprecated-sys-function,
140140
exception-escape,
141-
comprehension-escape
141+
comprehension-escape,
142+
bad-continuation
142143

143144
# Enable the message, report, category or checker with the given id(s). You can
144145
# either give multiple identifier separated by comma (,) or put this option

tests/lib/test_docker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import nestor_api.lib.docker as docker
88

99

10-
# pylint disable=no-self-use
10+
# pylint: disable=no-self-use
1111
class TestDockerLib(TestCase):
1212
@patch("nestor_api.lib.docker.has_docker_image", autospec=True)
1313
@patch("nestor_api.lib.docker.git", autospec=True)

0 commit comments

Comments
 (0)