Skip to content

Commit

Permalink
fix: do not exclude nulls from project anatomy
Browse files Browse the repository at this point in the history
  • Loading branch information
martastain committed Jan 31, 2024
1 parent 86c9268 commit 556a777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/projects/anatomy.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def process_link_types(src: list[LinkTypeModel]) -> list[dict[str, Any]]:
return result


@router.get("/projects/{project_name}/anatomy", response_model_exclude_none=True)
@router.get("/projects/{project_name}/anatomy")
async def get_project_anatomy(user: CurrentUser, project_name: ProjectName) -> Anatomy:
"""Retrieve a project anatomy."""

Expand Down

0 comments on commit 556a777

Please sign in to comment.