From 580b24d746d9b207c8ad1b3c114ea7d532eb73f9 Mon Sep 17 00:00:00 2001 From: cching95 <73163191+cching95@users.noreply.github.com> Date: Tue, 21 Mar 2023 10:02:25 +0000 Subject: [PATCH] remove print statement in twa Signed-off-by: cching95 <73163191+cching95@users.noreply.github.com> --- src/sdk/python/rtdip_sdk/functions/time_weighted_average.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/sdk/python/rtdip_sdk/functions/time_weighted_average.py b/src/sdk/python/rtdip_sdk/functions/time_weighted_average.py index 964abdeea..e1e77ed8d 100644 --- a/src/sdk/python/rtdip_sdk/functions/time_weighted_average.py +++ b/src/sdk/python/rtdip_sdk/functions/time_weighted_average.py @@ -123,8 +123,6 @@ def process_time_weighted_averages_step(pandas_df): time_weighted_averages_datetime = time_weighted_averages.index.to_pydatetime() weighted_averages_timezones = np.array([z.replace(tzinfo=pytz.timezone(utc)) for z in time_weighted_averages_datetime]) time_weighted_averages = time_weighted_averages[(original_start_date.replace(tzinfo=pytz.timezone(utc)) < weighted_averages_timezones) & (weighted_averages_timezones <= original_end_date.replace(tzinfo=pytz.timezone(utc)) + timedelta(seconds = 1))] - pd.set_option('display.max_rows', None) - print(time_weighted_averages) return time_weighted_averages except Exception as e: