ymentha14
ymentha14
### Before opening, please confirm: - [X] I have installed the latest version of the Amplify CLI (see above), and confirmed that the issue still persists. - [X] I have...
foo.py ```python import luigi class Foo(luigi.Task): bar = luigi.ListParameter(default="['foo']") def run(self): print(f"Running task {self}") def output(self): return luigi.LocalTarget("./foo.txt") ``` Running `luigi --module foo Foo --bar 'bar'` results in `json.decoder.JSONDEcodeError: Expecting...
* Breaking change to adapt to pydantic 2.0 * Remove dependency on secret file directory to setup an ssm prefix * Add corresponding tests