Fix resource warnings

This commit is contained in:
Anthony Sottile 2018-06-18 00:00:38 -07:00
parent a193eab99e
commit 5dc306b35d
7 changed files with 14 additions and 7 deletions

View file

@ -14,7 +14,8 @@ def main(argv=None):
retv = 0
for filename in args.files:
original_contents = io.open(filename, encoding='UTF-8').read()
with io.open(filename, encoding='UTF-8') as f:
original_contents = f.read()
new_contents = autopep8.fix_code(original_contents, args)
if original_contents != new_contents:
print('Fixing {}'.format(filename))