File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3030# Note(maoy): E1103 is error code related to partial type inference
3131ignore_codes = ["E1103" ]
3232# Note(maoy): the error message is the pattern of E0202. It should be ignored
33- # for savanna .tests modules
34- ignore_messages = ["An attribute affected in savanna .tests" ]
33+ # for mistralclient .tests modules
34+ ignore_messages = ["An attribute affected in mistralclient .tests" ]
3535# We ignore all errors in openstack.common because it should be checked
3636# elsewhere.
37- ignore_modules = ["savanna /openstack/common/" ]
37+ ignore_modules = ["mistralclient /openstack/common/" ]
3838
3939KNOWN_PYLINT_EXCEPTIONS_FILE = "tools/pylint_exceptions"
4040
@@ -129,7 +129,7 @@ def from_file(cls, filename):
129129def run_pylint ():
130130 buff = StringIO .StringIO ()
131131 reporter = text .ParseableTextReporter (output = buff )
132- args = ["--include-ids=y" , "-E" , "savanna " ]
132+ args = ["--include-ids=y" , "-E" , "mistralclient " ]
133133 lint .Run (args , reporter = reporter , exit = False )
134134 val = buff .getvalue ()
135135 buff .close ()
You can’t perform that action at this time.
0 commit comments