Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/atomscale/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@ def search(
"workspaces": "Workspaces",
"project_ids": "Project ID",
"project_names": "Project Name",
"sha3_256": "sha256",
}

columns_to_drop = [
Expand Down Expand Up @@ -207,6 +208,7 @@ def search(
"Tags",
"Owner",
"Workspaces",
"sha256",
]
ordered_cols = [col for col in desired_order if col in catalogue.columns] + [
col for col in catalogue.columns if col not in desired_order
Expand Down
1 change: 1 addition & 0 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ def test_generic_search(client: Client):
"Sample Notes Last Updated",
"Project ID",
"Project Name",
"sha256",
]
)
assert not len(set(orig_data.keys().values) - column_names)
Expand Down