cruise-automation / isopod

An expressive DSL and framework for Kubernetes configuration without YAML
Apache License 2.0
482 stars 32 forks source link

Clean up indentation for code generator #69

Closed jonnylangefeld closed 4 years ago

jonnylangefeld commented 4 years ago

This fix changes the current code genertation from

blah_blah=[foobar(
    something,
),
foobar(
    something_else,
)]

to

blah_blah=[
    foobar(
        something,
    ),
    foobar(
        something_else,
    ),
]

Fix #68