Skip to content

Commit

Permalink
added type to _get_points
Browse files Browse the repository at this point in the history
  • Loading branch information
quentinblampey committed Oct 18, 2023
1 parent c627ab8 commit 53cd8ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spatialdata_io/readers/merscope.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def merscope(
return SpatialData(shapes=shapes, points=points, images=images, table=table)


def _get_points(transcript_path: Path):
def _get_points(transcript_path: Path) -> dd.DataFrame:
transcript_df = dd.read_csv(transcript_path)
transcripts = PointsModel.parse(
transcript_df,
Expand Down

0 comments on commit 53cd8ef

Please sign in to comment.