mirror of
https://github.com/facebookresearch/pytorch3d.git
synced 2025-12-20 14:20:38 +08:00
Address black + isort fbsource linter warnings
Summary: Address black + isort fbsource linter warnings from D20558374 (previous diff) Reviewed By: nikhilaravi Differential Revision: D20558373 fbshipit-source-id: d3607de4a01fb24c0d5269634563a7914bddf1c8
This commit is contained in:
committed by
Facebook GitHub Bot
parent
eb512ffde3
commit
d57daa6f85
@@ -4,8 +4,8 @@
|
||||
import itertools
|
||||
import math
|
||||
import unittest
|
||||
import torch
|
||||
|
||||
import torch
|
||||
from pytorch3d.transforms.rotation_conversions import (
|
||||
euler_angles_to_matrix,
|
||||
matrix_to_euler_angles,
|
||||
@@ -45,9 +45,7 @@ class TestRandomRotation(unittest.TestCase):
|
||||
)
|
||||
# The 0.1 significance level for chisquare(8-1) is
|
||||
# scipy.stats.chi2(7).ppf(0.9) == 12.017.
|
||||
self.assertLess(
|
||||
chisquare_statistic, 12, (counts, chisquare_statistic, k)
|
||||
)
|
||||
self.assertLess(chisquare_statistic, 12, (counts, chisquare_statistic, k))
|
||||
|
||||
|
||||
class TestRotationConversion(unittest.TestCase):
|
||||
|
||||
Reference in New Issue
Block a user