lint fixes

Summary: Fixing recent lint problems.

Reviewed By: patricklabatut

Differential Revision: D29522647

fbshipit-source-id: 9bd89fbfa512ecd7359ec355cf12b16fb7024b47
This commit is contained in:
Jeremy Reizenstein
2021-07-01 16:07:01 -07:00
committed by Facebook GitHub Bot
parent 5615f072d7
commit 61754b2fac
8 changed files with 12 additions and 19 deletions

View File

@@ -18,6 +18,7 @@ from pytorch3d.utils import (
opencv_from_cameras_projection,
)
DATA_DIR = get_tests_dir() / "data"

View File

@@ -8,7 +8,7 @@ import unittest
import torch
from common_testing import TestCaseMixin, get_random_cuda_device
from pytorch3d.ops import laplacian, norm_laplacian, cot_laplacian
from pytorch3d.ops import cot_laplacian, laplacian, norm_laplacian
from pytorch3d.structures.meshes import Meshes
@@ -54,7 +54,7 @@ class TestLaplacianMatrices(TestCaseMixin, unittest.TestCase):
mesh = self.init_mesh()
verts = mesh.verts_packed()
faces = mesh.faces_packed()
V, F = verts.shape[0], faces.shape[0]
V = verts.shape[0]
eps = 1e-12