From 2f4807d760f68119234b0cae5825516d8e09a5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Thi=C3=A9baut?= Date: Mon, 10 Jun 2024 13:33:50 +0200 Subject: [PATCH] Do not use `Unitless` --- src/ImageMetrics.jl | 2 +- src/interpolation.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ImageMetrics.jl b/src/ImageMetrics.jl index 1c62a8c..804c802 100644 --- a/src/ImageMetrics.jl +++ b/src/ImageMetrics.jl @@ -4,7 +4,7 @@ export interpolate, interpolate!, resample -using Unitless, TypeUtils, ArrayTools +using TypeUtils, ArrayTools include("utils.jl") include("metrics.jl") diff --git a/src/interpolation.jl b/src/interpolation.jl index b4ab170..c6cb3be 100644 --- a/src/interpolation.jl +++ b/src/interpolation.jl @@ -2,7 +2,7 @@ module Interpolation export interpolate, interpolate!, resample -using TypeUtils, Unitless +using TypeUtils import Base: axes1 # A colon means no interpolation, otherwise a vector of coordinates.