From afc7d2564aa83f53f9b4836a0645dc17de34a6da Mon Sep 17 00:00:00 2001 From: Nikolay Akhmetov Date: Fri, 13 Dec 2024 15:22:17 -0500 Subject: [PATCH] hotfix for the hotfix... --- VERSION.txt | 2 +- src/portal_visualization/client.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 42045ac..c2c0004 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -0.3.4 +0.3.5 diff --git a/src/portal_visualization/client.py b/src/portal_visualization/client.py index ceb1bde..f1142a1 100644 --- a/src/portal_visualization/client.py +++ b/src/portal_visualization/client.py @@ -246,8 +246,8 @@ def get_vitessce_conf_cells_and_lifted_uuid( # Otherwise, just try to visualize the data for the entity itself: else: # pragma: no cover # We have separate tests for the builder logic try: - def get_entity(uuid): - return self.get_entity(uuid=uuid) + def get_entity(entity): + return self.get_entity(uuid=entity.get('uuid')) Builder = get_view_config_builder(entity, get_entity, parent, epic_uuid) builder = Builder(entity, self.groups_token, self.assets_endpoint) vitessce_conf = builder.get_conf_cells(marker=marker)