From 530e878b44c883b28f5978550a46282a826c958d Mon Sep 17 00:00:00 2001
From: Niklas Selke <n.selke@fz-juelich.de>
Date: Thu, 10 Nov 2022 10:52:07 +0100
Subject: [PATCH] Added missing import statements to the deseasonalization
 code.

---
 toarstats/trends/utils.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/toarstats/trends/utils.py b/toarstats/trends/utils.py
index 5f18082..aaa0246 100644
--- a/toarstats/trends/utils.py
+++ b/toarstats/trends/utils.py
@@ -4,6 +4,8 @@ This module contains the following function:
 deseasonalize - calculate the trend using the requested method
 """
 
+import numpy as np
+import pandas as pd
 import statsmodels.formula.api as smf
 
 
-- 
GitLab