diff options
author | Frederick Muriuki Muriithi | 2023-02-24 12:30:36 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2023-02-24 12:34:11 +0300 |
commit | 32a9103fba0454338ad126125038d97e7d228ec5 (patch) | |
tree | 9f9f10ab722598503c1398bd169c01bc7f962501 /gn3/auth/authorisation/resources/models.py | |
parent | d6499ce9f64d6f71d389e2ad32b112147a2f162a (diff) | |
download | genenetwork3-32a9103fba0454338ad126125038d97e7d228ec5.tar.gz |
auth: resources: Fix query for data not linked to resources
Diffstat (limited to 'gn3/auth/authorisation/resources/models.py')
-rw-r--r-- | gn3/auth/authorisation/resources/models.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn3/auth/authorisation/resources/models.py b/gn3/auth/authorisation/resources/models.py index d3023ac..3547bc6 100644 --- a/gn3/auth/authorisation/resources/models.py +++ b/gn3/auth/authorisation/resources/models.py @@ -207,7 +207,6 @@ def attach_resource_data(cursor: db.DbCursor, resource: Resource) -> Resource: dict(data_row) for data_row in resource_data_function[category.resource_category_key]( cursor, resource.resource_id)) - print(f"DATA ROWS: {data_rows}") return Resource( resource.group, resource.resource_id, resource.resource_name, resource.resource_category, resource.public, data_rows) |