Pattern: Use of whitespace before :
Issue: -
Colons should not have any space before 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: -
Colons should not have any space before them.
with open('file.dat') as f :
contents = f.read()
with open('file.dat') as f:
contents = f.read()