Skip to content

Commit

Permalink
Merge pull request #42 from lsst-sqre/tickets/DM-29532
Browse files Browse the repository at this point in the history
[DM-29532] Fix size location in yaml
  • Loading branch information
cbanek authored Apr 8, 2021
2 parents 8bb9412 + 16c2aca commit fa5773f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nublado2/nublado_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def __init__(self) -> None:
s.name: s
for s in [
LabSize(float(s["cpu"]), s["name"], s["ram"])
for s in self._config["options_form"]["sizes"]
for s in self._config["sizes"]
]
}

Expand Down

0 comments on commit fa5773f

Please sign in to comment.