3
if 'certainField' in myData['meta']['loc']:
something = myData['meta'] \ <- PEP8 E11 raised for this
['loc'] \ <- PEP8 E11 raised for this
['certainField'] \ <- PEP8 E11 raised for this
['thefield']
的代碼按預期工作。但PEP 8 E211是針對第二,第三和第四線索提出的whitespace before '['
我不明白。我怎樣才能格式化這個PEP 8?