From 58566963d620cbe067ec53eae62ca262aecfbe27 Mon Sep 17 00:00:00 2001 From: generatedunixname89002005307016 Date: Wed, 16 Oct 2024 19:22:01 -0700 Subject: [PATCH] Add type error suppressions for upcoming upgrade Reviewed By: MaggieMoss Differential Revision: D64502797 fbshipit-source-id: cee9a54dfa8a005d5912b895d0bd094f352c5c6f --- pytorch3d/vis/texture_vis.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pytorch3d/vis/texture_vis.py b/pytorch3d/vis/texture_vis.py index 60b0d1b4..9f044b2c 100644 --- a/pytorch3d/vis/texture_vis.py +++ b/pytorch3d/vis/texture_vis.py @@ -59,6 +59,8 @@ def texturesuv_image_matplotlib( for i in indices: # setting clip_on=False makes it obvious when # we have UV coordinates outside the correct range + # pyre-fixme[6]: For 1st argument expected `Tuple[float, float]` but got + # `ndarray[Any, Any]`. ax.add_patch(Circle(centers[i], radius, color=color, clip_on=False))