1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-09-06 13:18:42 +02:00

Merge pull request #1563 from dmach/fix-PackageRevision.vrev

Fix obs_api.PackageRevision.vrev by changing the type from int to string
This commit is contained in:
2024-05-10 14:10:21 +02:00
committed by GitHub

View File

@@ -8,7 +8,7 @@ class PackageRevision(XmlModel):
xml_attribute=True,
)
vrev: Optional[int] = Field(
vrev: Optional[str] = Field(
xml_attribute=True,
)