Skip to content

Commit

Permalink
fix: use iterrows()
Browse files Browse the repository at this point in the history
  • Loading branch information
raylim committed Nov 3, 2023
1 parent d7075b0 commit 6c07692
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/luna/pathology/cli/dsa_upload.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def upload_annotation_to_dsa(
DataFrame[SlideSchema]: slide manifest
"""
uuids = []
for slide in slide_manifest.itertuples(name="Slide"):
for _, slide in slide_manifest.iterrows():
uuids = _upload_annotation_to_dsa(
dsa_endpoint_url,
slide[annotation_column],
Expand Down

0 comments on commit 6c07692

Please sign in to comment.