Commit 1caac254 authored by Cage, Gregory's avatar Cage, Gregory
Browse files

Fix pipeline error

parent 6a2dd3f5
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -74,8 +74,8 @@ class Dataset(AbstractData):
    def __init__(self, path: str = "", name: Optional[str] = None):
        self.path = path
        self.name = name or Path(path).name
        self.id: str
        self.store: "Datastore"
        self.id: str = ""
        self.store: Optional["Datastore"] = None
        self.file_type: str = Path(path).suffix
        self._content: Any = None