Fix PY2 compatibility

This commit is contained in:
allegroai 2020-12-30 16:50:45 +02:00
parent 643bc3d3ea
commit 0bb590b5da

View File

@ -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)