From 0f5e9bcbe0d6f8f1876c508ed92bdf1a0e411939 Mon Sep 17 00:00:00 2001 From: byersiiasa Date: Sat, 2 Mar 2024 22:54:20 +0100 Subject: [PATCH] remove catch for more than 1 variable in df --- rime/rime_functions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rime/rime_functions.py b/rime/rime_functions.py index 057409c..4ce439b 100644 --- a/rime/rime_functions.py +++ b/rime/rime_functions.py @@ -222,8 +222,8 @@ def map_transform_gwl( """ - if len(df1.variable) > 1: - raise Exception("Error: more than 1 variable in DataFrame") + # if len(df1.variable) > 1: + # raise Exception("Error: more than 1 variable in DataFrame") if len(df1.meta) > 1: raise Exception("Error: more than 1 model-scenario in DataFrame")