E501: line too long (88 > 79 characters)
if true:
if true:
if true:
record = self.content['data']['country_name']['city_name']['postal_address']
My failed attempt:
if true:
if true:
if true:
record = self.content['data']['country_name'] \
['city_name']['postal_address']
This is giving an error: E211 whitespace before '[' line: 4, column: 58
I'm using: http://pep8online.com