Skip to content

Commit

Permalink
update docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
m-goggins committed Feb 25, 2025
1 parent 2ae3d0f commit 7016935
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/recordlinker/database/mpi_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -384,9 +384,7 @@ def get_orphaned_patients(
cursor: int | None = None,
) -> typing.Sequence[models.Patient]:
"""
Retrieve orphaned Patients in the MPI database, up to the provided limit. If a
cursor (in the form of a patient reference_id) is provided, only retrieve Patients
with a reference_id greater than the cursor.
Retrieve orphaned Patients in the MPI database, up to the provided limit.
"""
query = select(models.Patient).where(models.Patient.person_id.is_(None)).limit(limit)

Expand Down

0 comments on commit 7016935

Please sign in to comment.