Pattern: Use of whitespace after (
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()