Skip to content

Commit

Permalink
remove print statement in twa
Browse files Browse the repository at this point in the history
Signed-off-by: cching95 <[email protected]>
  • Loading branch information
cching95 committed Mar 21, 2023
1 parent 1bfe60f commit 580b24d
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sdk/python/rtdip_sdk/functions/time_weighted_average.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 580b24d

Please sign in to comment.