Skip to content

Commit

Permalink
Update mods.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tengueax authored Sep 2, 2024
1 parent 5bc7519 commit fb71d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cursedforged/types/mods.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class Mod(BaseModel):
authors: list[ModAuthor] = Field(
alias="authors", description="List of the mod's authors"
)
logo: ModAsset = Field(alias="logo", description="The mod's logo asset")
logo: ModAsset | None = Field(alias="logo", description="The mod's logo asset", default=None)
screenshots: list[ModAsset] = Field(
alias="screenshots", description="List of screenshots assets"
)
Expand Down

0 comments on commit fb71d22

Please sign in to comment.