fixup: the 'p' must still be removed

This commit is contained in:
tcely 2025-02-12 01:22:11 -05:00 committed by GitHub
parent 8bedd4f9ff
commit b64ca284e7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -87,7 +87,7 @@ for name in SourceResolution.names:
if name.endswith('0P'):
value = SourceResolution.__dict__.get(name, None)
if isinstance(value, Enum):
value = int(value.value)
value = int(value.value[: -1])
SourceResolutionInteger.update({name: value})