h = {
xxx: Int32,
y: {a: 1,
b: 2},
}
b line is wrong indentation
IMO it should be formatted like:
h = {
xxx: Int32,
y: {a: 1, b: 2},
}
or:
h = {
xxx: Int32,
y: {
a: 1,
b: 2,
},
}
But that changes the format quite a bit...
@kostya How's your ideal final formatting of this?
Most helpful comment
IMO it should be formatted like:
or:
But that changes the format quite a bit...
@kostya How's your ideal final formatting of this?