From 5acdc0eca8029cf304085c100a0ceed45a7d0709 Mon Sep 17 00:00:00 2001 From: Niklas Selke <n.selke@fz-juelich.de> Date: Tue, 8 Nov 2022 14:24:32 +0100 Subject: [PATCH] Set the '__all__' variable in the toarstats package. --- toarstats/__init__.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/toarstats/__init__.py b/toarstats/__init__.py index d33f5b4..ff6d5cb 100644 --- a/toarstats/__init__.py +++ b/toarstats/__init__.py @@ -4,3 +4,7 @@ This package contains the following two subpackages: metrics - calculate metrics on time series trends - calculate trends on time series """ + +from toarstats import metrics, trends + +__all__ = ["metrics", "trends"] -- GitLab