1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-12 08:56:13 +01: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:
Daniel Mach 2024-05-10 14:10:21 +02:00 committed by GitHub
commit e8f9073f82
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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