Skip to content

Commit

Permalink
fix unkown label (#3355)
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz authored Sep 14, 2022
1 parent 9dfda53 commit 0cc9c76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ async def list_files(
async for proj_data in db_projects.list_projects(
conn, accesible_projects_ids
):
prj_names_mapping = {proj_data.uuid: proj_data.name} | {
prj_names_mapping |= {proj_data.uuid: proj_data.name} | {
NodeID(node_id): node_data.label
for node_id, node_data in proj_data.workbench.items()
}
Expand Down

0 comments on commit 0cc9c76

Please sign in to comment.