From 01ed5cf7674685e1cd9eaf21ded8a6e0126a0c93 Mon Sep 17 00:00:00 2001 From: Yasha Bubnov Date: Wed, 23 Oct 2024 19:07:37 +0200 Subject: [PATCH] Change the order of imports. --- torch_delaunay/functional.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/torch_delaunay/functional.py b/torch_delaunay/functional.py index e00a1cd..31398d9 100644 --- a/torch_delaunay/functional.py +++ b/torch_delaunay/functional.py @@ -15,9 +15,10 @@ from typing import Optional -import torch_delaunay._C as _C from torch import Tensor +import torch_delaunay._C as _C + def shull2d(points: Tensor, eps: Optional[float] = None) -> Tensor: """Computes Delaunay tessellation for 2-dimensional coordinates.