mirror of
https://github.com/clearml/clearml
synced 2025-02-07 13:23:40 +00:00
Fix PY2 compatibility
This commit is contained in:
parent
643bc3d3ea
commit
0bb590b5da
@ -28,7 +28,7 @@ except ImportError:
|
|||||||
|
|
||||||
|
|
||||||
@attrs
|
@attrs
|
||||||
class FileEntry:
|
class FileEntry(object):
|
||||||
relative_path = attrib(default=None, type=str)
|
relative_path = attrib(default=None, type=str)
|
||||||
hash = attrib(default=None, type=str)
|
hash = attrib(default=None, type=str)
|
||||||
parent_dataset_id = attrib(default=None, type=str)
|
parent_dataset_id = attrib(default=None, type=str)
|
||||||
|
Loading…
Reference in New Issue
Block a user