From a33dbc592b62aeae7557d30bafbae86767fb1c38 Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Bajpai Date: Mon, 20 Jul 2026 10:57:59 +0530 Subject: [PATCH] fix: bare except at line 180 in pipeline.py --- pysnippets/Scrubs/pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pysnippets/Scrubs/pipeline.py b/pysnippets/Scrubs/pipeline.py index dc81555..c934214 100644 --- a/pysnippets/Scrubs/pipeline.py +++ b/pysnippets/Scrubs/pipeline.py @@ -177,7 +177,7 @@ def aggregate_df(df, df_y, cols_flags): 'y': conversion_measure }) return pd.concat([s1, s2]) - except: + except Exception: errors_aggregate_df.append(ckey) pass