Skip to content

Commit

Permalink
fixed bug with custom heirarchys
Browse files Browse the repository at this point in the history
  • Loading branch information
0Hughman0 committed Sep 29, 2020
1 parent 3bb128b commit f8f565d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cassini/defaults/tiers.py
Expand Up @@ -263,7 +263,7 @@ def datasets(self) -> list:
"""
techs = []
for technique in self.parent.techniques:
dataset = DataSet(*self.identifiers, technique)
dataset = self.child_cls(*self.identifiers, technique)
if dataset.exists():
techs.append(dataset)
return techs
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cassini"
version = "0.1.1"
version = "0.1.2"
description = "A tool to structure experimental work, data and analysis using Jupyter Lab."
authors = ["0Hughman0 <rammers2@hotmail.co.uk>"]
license = "GPL-3.0-only"
Expand Down

0 comments on commit f8f565d

Please sign in to comment.