We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7894f3 commit fdf2808Copy full SHA for fdf2808
.pylintrc
@@ -138,7 +138,8 @@ disable=print-statement,
138
xreadlines-attribute,
139
deprecated-sys-function,
140
exception-escape,
141
- comprehension-escape
+ comprehension-escape,
142
+ bad-continuation
143
144
# Enable the message, report, category or checker with the given id(s). You can
145
# either give multiple identifier separated by comma (,) or put this option
tests/lib/test_docker.py
@@ -7,7 +7,7 @@
7
import nestor_api.lib.docker as docker
8
9
10
-# pylint disable=no-self-use
+# pylint: disable=no-self-use
11
class TestDockerLib(TestCase):
12
@patch("nestor_api.lib.docker.has_docker_image", autospec=True)
13
@patch("nestor_api.lib.docker.git", autospec=True)
0 commit comments