mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-19 05:40:34 +08:00
lint fixes
Summary: Fixing recent lint problems. Reviewed By: patricklabatut Differential Revision: D29522647 fbshipit-source-id: 9bd89fbfa512ecd7359ec355cf12b16fb7024b47
This commit is contained in:
committed by
Facebook GitHub Bot
parent
5615f072d7
commit
61754b2fac
@@ -18,6 +18,7 @@ from pytorch3d.utils import (
|
||||
opencv_from_cameras_projection,
|
||||
)
|
||||
|
||||
|
||||
DATA_DIR = get_tests_dir() / "data"
|
||||
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user