Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBelthle committed Feb 10, 2025
1 parent 82a190e commit a7dd08b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/antares/craft/service/api_services/models/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def to_user_advanced_parameters_model(self) -> AdvancedParameters:
return AdvancedParameters(**self.model_dump(mode="json", exclude=excluded_fields))

def to_user_seed_parameters_model(self) -> SeedParameters:
included_fields = set(asdict(SeedParametersUpdate()).keys())
included_fields = set(asdict(SeedParameters()).keys())
return SeedParameters(**self.model_dump(mode="json", include=included_fields))


Expand Down

0 comments on commit a7dd08b

Please sign in to comment.