Pattern: Use of whitespace before (
Issue: -
Open parentheses should not have any space before or after them.
# The space after open is unnecessary
with open ('file.dat') as f:
contents = f.read()
with open('file.dat') as f:
contents = f.read()