Fix Py2 support - attr dataclass must be new style class (#4808)

This commit is contained in:
Roy Nieterau 2023-04-06 16:12:34 +02:00 committed by GitHub
parent abca25b94a
commit fe5853fcf1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,7 +26,7 @@ HARDLINK = 2
@attr.s
class TextureResult:
class TextureResult(object):
"""The resulting texture of a processed file for a resource"""
# Path to the file
path = attr.ib()