When formatting the following:
OrderedDict([('foo', 1), ('bar', 'baz')])
I get this:
OrderedDict ([
('foo',
1 ),
('bar',
'baz')
])
while I would rather get this:
OrderedDict([
('foo', 1),
('bar', 'baz')
])
Except general formatting, also note no space after OrderedDict or 1.