From e012ec3f059b8be5c48932308673096be09f6859 Mon Sep 17 00:00:00 2001 From: Jan Lebert Date: Wed, 8 May 2024 15:03:04 -0700 Subject: [PATCH] Fix example code syntax error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ff436b..9c296aa 100644 --- a/README.md +++ b/README.md @@ -112,7 +112,7 @@ Array inputs, with the frequencies set to low, medium and high respectively. ```python import numpy as np forecast_input = [ - np.sin(np.linspace(0, 20, 100)) + np.sin(np.linspace(0, 20, 100)), np.sin(np.linspace(0, 20, 200)), np.sin(np.linspace(0, 20, 400)), ]