From 391695d9e7bef9d7883bc8aa5d34605e8ba57fd3 Mon Sep 17 00:00:00 2001 From: Lucie Baumont Date: Thu, 29 Jun 2023 11:12:06 +0200 Subject: [PATCH 1/2] updated __init__.py to import starlet_l1norm --- lenspack/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lenspack/__init__.py b/lenspack/__init__.py index 6f8e162..e3c9924 100644 --- a/lenspack/__init__.py +++ b/lenspack/__init__.py @@ -18,12 +18,13 @@ * ``shear`` : tangential and cross components of shear * ``stats`` : second- and higher-order statistics * ``utils`` : general utility functions +* ``starlet_l1norm`` : functions to compute the starlet l1norm """ # List of submodules __all__ = ['geometry', 'halo', 'image', 'theory', 'peaks', 'shear', 'stats', - 'utils'] + 'utils','starlet_l1norm'] from . import * from .info import __version__, __about__ From bad11fb7dffb42d61f15a2366a064e01b1ff4236 Mon Sep 17 00:00:00 2001 From: Lucie Baumont Date: Wed, 12 Jul 2023 11:08:50 +0200 Subject: [PATCH 2/2] added space --- lenspack/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lenspack/__init__.py b/lenspack/__init__.py index e3c9924..668785e 100644 --- a/lenspack/__init__.py +++ b/lenspack/__init__.py @@ -24,7 +24,7 @@ # List of submodules __all__ = ['geometry', 'halo', 'image', 'theory', 'peaks', 'shear', 'stats', - 'utils','starlet_l1norm'] + 'utils', 'starlet_l1norm'] from . import * from .info import __version__, __about__