Skip to content

Commit af8203c

Browse files
committed
ruff checked
1 parent bc41929 commit af8203c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/b3d/chisight/sfm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from .epipolar import *
21
from .eight_point import *
2+
from .epipolar import *
33

src/b3d/chisight/sfm/eight_point.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,14 @@
3434
ps = poses_from_essential(E)
3535
```
3636
"""
37+
from typing import Tuple
38+
3739
import jax
3840
from jax import numpy as jnp
3941

40-
import b3d.camera as camera
4142
from b3d.pose import Pose
4243
from b3d.types import Array, Int, Matrix3x3, Matrix3x4, Point3D
43-
from typing import Tuple
44+
4445

4546
def cross_product_matrix(a) -> Matrix3x3:
4647
"""

0 commit comments

Comments
 (0)