1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-03-30 20:03:06 +02:00

Fix obs_api.PackageRevision.vrev by changing the type from int to string

This commit is contained in:
Daniel Mach 2024-05-10 13:23:48 +02:00
parent 72e1896232
commit c16a3d9027

View File

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