From 3b775e8d0bb5b81009a23719a591ee68a7c9c47e Mon Sep 17 00:00:00 2001 From: Miles Graham Date: Thu, 8 Aug 2024 12:38:38 +0100 Subject: [PATCH] sphere fix 2 missed the dot, oops. editing directly --- src/ttmask/sphere.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ttmask/sphere.py b/src/ttmask/sphere.py index a862b4c..0a4bb29 100644 --- a/src/ttmask/sphere.py +++ b/src/ttmask/sphere.py @@ -6,8 +6,8 @@ import mrcfile from ._cli import cli -from soft_edge import add_soft_edge -from box_setup import box_setup +from .soft_edge import add_soft_edge +from .box_setup import box_setup @cli.command(name='sphere')