From 5fa0cb3ab9590f1fc0fb1bebc6a4c3d3db1de2ea Mon Sep 17 00:00:00 2001 From: Niklas Selke <n.selke@fz-juelich.de> Date: Thu, 15 Sep 2022 11:56:34 +0200 Subject: [PATCH] Set the '__all__' variable in the trends subpackage. --- toarstats/trends/__init__.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/toarstats/trends/__init__.py b/toarstats/trends/__init__.py index 47d89bc..75adc51 100644 --- a/toarstats/trends/__init__.py +++ b/toarstats/trends/__init__.py @@ -2,3 +2,8 @@ This subpackage contains trend analysis tools for time series. """ + +from toarstats.trends.interface import calculate_trend + + +__all__ = ["calculate_trend"] -- GitLab