Pattern: Use of whitespace before )
Issue: -
Closing parentheses should not have any before after them.
with open('file.dat' ) as f:
contents = f.read()
with open('file.dat') as f:
contents = f.read()
Pattern: Use of whitespace before )
Issue: -
Closing parentheses should not have any before after them.
with open('file.dat' ) as f:
contents = f.read()
with open('file.dat') as f:
contents = f.read()