Skip to content

Formatting of e.g. OrderedDict is off #4

@alimony

Description

@alimony

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions