Skip to content

Commit 21e36d3

Browse files
committed
Quick isort fix
1 parent 8e4b8aa commit 21e36d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manify/curvature_estimation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* `sectional_curvature`: Estimates the sectional curvature of a graph from its distance matrix.
88
"""
99

10-
from manify.curvature_estimation.delta_hyperbolicity import vectorized_delta_hyperbolicity, sampled_delta_hyperbolicity
10+
from manify.curvature_estimation.delta_hyperbolicity import sampled_delta_hyperbolicity, vectorized_delta_hyperbolicity
1111
from manify.curvature_estimation.greedy_method import greedy_signature_selection
1212
from manify.curvature_estimation.sectional_curvature import sectional_curvature
1313

manify/curvature_estimation/greedy_method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
from __future__ import annotations
88

99
from typing import Any, Tuple
10-
from jaxtyping import Float
1110

1211
import torch
12+
from jaxtyping import Float
1313

1414
from ..manifolds import ProductManifold
1515

0 commit comments

Comments
 (0)