Skip to content

Commit

Permalink
Add kwarg env
Browse files Browse the repository at this point in the history
  • Loading branch information
noah-paige committed Nov 10, 2023
1 parent 907d328 commit 9ec7c87
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def __init__(

stages = ""
for env in sorted(development_environments, key=lambda env: env.order):
stage = f""".add_stage(stage_id="{env.stage}", stage=ApplicationStage(app, "{env.stage}", ddk.Configurator.get_environment(config_path="./ddk.json", environment_id="{env.stage}")))"""
stage = f""".add_stage(stage_id="{env.stage}", stage=ApplicationStage(app, "{env.stage}", env=ddk.Configurator.get_environment(config_path="./ddk.json", environment_id="{env.stage}")))"""
stages = stages + stage
footer = """
.synth()
Expand Down

0 comments on commit 9ec7c87

Please sign in to comment.