Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Feb 21, 2025
1 parent 52096e1 commit 38c2b00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antares/craft/service/local_services/models/area.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def from_user_model(user_class: AreaUiType) -> "AreaUiLocal":
"color_b": user_class.color_rgb[2],
}
)
args.update({"layerColor": {0: ",".join(str(c) for c in user_class.color_rgb)}})
args["layerColor"] = {0: ",".join(str(c) for c in user_class.color_rgb)}
return AreaUiLocal.model_validate(args)

def to_user_model(self) -> AreaUi:
Expand Down

0 comments on commit 38c2b00

Please sign in to comment.