Skip to content

Commit 33c7b2c

Browse files
committed
Fix Dataset.upload typo
1 parent b8e8137 commit 33c7b2c

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
## Nova Galaxy 0.12.0 (in progress)
22

3+
### Nova Galaxy 0.11.7
4+
- Fixes an issue where calling `Dataset.download` after calling `Dataset.upload` on a remote file would result in an error (thanks to John Duggan). [Pull request x](x)
5+
36
### Nova Galaxy 0.11.6
47
- Fixes an issue where `get_url` could hang indefinitely when checking interactive tool URLs (thanks to John Duggan). [Pull request 62](https://github.com/nova-model/nova-galaxy-pull/62)
58

src/nova/galaxy/dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def upload(self, store: "Datastore", name: Optional[str] = None) -> None:
9696
history_id=store.history_id, tool_id=LOAD_NEUTRON_DATA_TOOL, tool_inputs=tool_inputs
9797
)
9898
self.id = results["outputs"][0]["id"]
99-
self.store = self.store
99+
self.store = store
100100

101101
else:
102102
file_name = name if name else self.name

0 commit comments

Comments
 (0)