Skip to content

Commit 7ca4553

Browse files
committed
Change import order to make isort happy
1 parent 05f4256 commit 7ca4553

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stochman/discretized_manifold.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python3
2-
from typing import Optional, Tuple, Union
32
from math import ceil
3+
from typing import Optional, Tuple, Union
44

55
import networkx as nx
66
import torch
77

8-
from stochman.manifold import Manifold
98
from stochman.curves import CubicSpline, DiscreteCurve
9+
from stochman.manifold import Manifold
1010

1111

1212
class DiscretizedManifold(Manifold):

0 commit comments

Comments
 (0)