🐛 Bug Report
Given the method signature -
and the snippet that uses this method as -
mymethod({
Foo: 'Bar',
Baz: 5
});
This gets incorrectly translated into Python as -
mymethod(
Foo="Bar",
Baz=5
)
Real life example -
================= 95964378aeaa3097f169ababbfa7299d423f35d782742e0b6ef0ec429f7e6e7e =================
template.hasResourceProperties('Foo::Bar', {
Foo: 'Bar',
Baz: 5,
Qux: [ 'Waldo', 'Fred' ],
});
----------- python -----------
template.has_resource_properties("Foo::Bar",
Foo="Bar",
Baz=5,
Qux=["Waldo", "Fred"]
)