Commit e8b336ef by Sarina Canelake

s/pylint: disable=E1121/pylint: disable=too-many-function-args/

parent c904bd70
......@@ -171,7 +171,7 @@ def _write_files(output_root, contents, generated_suffix_map=None):
# not_file is included to short-circuit this check, because
# read_md5 depends on the file already existing
write_file = not_file or output_file.read_md5() != hashlib.md5(file_content).digest() # pylint: disable=E1121
write_file = not_file or output_file.read_md5() != hashlib.md5(file_content).digest() # pylint: disable=too-many-function-args
if write_file:
LOG.debug("Writing %s", output_file)
output_file.write_bytes(file_content)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment