mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Fix Py2 support - attr dataclass must be new style class (#4808)
This commit is contained in:
parent
abca25b94a
commit
fe5853fcf1
1 changed files with 1 additions and 1 deletions
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue