ignore_codes = ["E1103"]
# Note(maoy): the error message is the pattern of E0202. It should be ignored
# for cinder.tests modules
-#Note(fengqian): the second error message is the pattern of [E0611].
-#It should be ignored because use six module to keep py3.X compatibility.
-ignore_messages = ["An attribute affected in cinder.tests", "No name 'urllib' in module '_MovedItems'"]
+# Note(fengqian): the second error message is the pattern of [E0611].
+# It should be ignored because use six module to keep py3.X compatibility.
+# Note(e0ne): the third error messege is for SQLAlchemy update() calls
+# in DB schema migrations.
+ignore_messages = ["An attribute affected in cinder.tests",
+ "No name 'urllib' in module '_MovedItems'",
+ "No value passed for parameter 'dml'"]
# Note(maoy): we ignore all errors in openstack.common because it should be
# checked elsewhere. We also ignore cinder.tests for now due to high false
# positive rate.