Skip to content

Commit

Permalink
get rid of type:ignore clauses
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Jul 6, 2023
1 parent b77534e commit 91ede57
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/python/roundtrips/points2d/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ def main() -> None:
instance_keys = np.array([66, 666], dtype=np.uint64)

points2d = rr.Points2D(
points, # type: ignore[arg-type]
radii=radii, # type: ignore[arg-type]
colors=colors, # type: ignore[arg-type]
labels=labels, # type: ignore[arg-type]
draw_order=draw_order, # type: ignore[arg-type]
class_ids=class_ids, # type: ignore[arg-type]
keypoint_ids=keypoint_ids, # type: ignore[arg-type]
instance_keys=instance_keys, # type: ignore[arg-type]
points,
radii=radii,
colors=colors,
labels=labels,
draw_order=draw_order,
class_ids=class_ids,
keypoint_ids=keypoint_ids,
instance_keys=instance_keys,
)

parser = argparse.ArgumentParser(description="Logs rich data using the Rerun SDK.")
Expand Down

0 comments on commit 91ede57

Please sign in to comment.