mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-22 07:10:34 +08:00
pyre and lint fixes
Summary: Fixing several unused imports and pyre/linter warnings. Reviewed By: bottler Differential Revision: D22592491 fbshipit-source-id: 463383b9b73a545949475044fb5c531712f8482c
This commit is contained in:
committed by
Facebook GitHub Bot
parent
7e5bad475c
commit
4f78af6170
@@ -375,7 +375,7 @@ class Transform3d:
|
||||
"""
|
||||
other = Transform3d(device=self.device)
|
||||
if self._lu is not None:
|
||||
other._lu = [l.clone() for l in self._lu]
|
||||
other._lu = [elem.clone() for elem in self._lu]
|
||||
other._matrix = self._matrix.clone()
|
||||
other._transforms = [t.clone() for t in self._transforms]
|
||||
return other
|
||||
|
||||
Reference in New Issue
Block a user