double-quote-string-fixer
diff --git a/pre_commit_hooks/sort_simple_yaml.py b/pre_commit_hooks/sort_simple_yaml.py
index 3c8ef16..a381679 100755
--- a/pre_commit_hooks/sort_simple_yaml.py
+++ b/pre_commit_hooks/sort_simple_yaml.py
@@ -115,9 +115,9 @@
new_lines = sort(lines)
if lines != new_lines:
- print("Fixing file `{filename}`".format(filename=filename))
+ print('Fixing file `{filename}`'.format(filename=filename))
f.seek(0)
- f.write("\n".join(new_lines) + "\n")
+ f.write('\n'.join(new_lines) + '\n')
f.truncate()
retval = 1