From eafe0220f2cba0659125b4d9ae9c1c121dd2caf5 Mon Sep 17 00:00:00 2001 From: prahul11 Date: Mon, 6 Nov 2023 15:57:22 +0530 Subject: [PATCH] Update common_task.py --- common_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common_task.py b/common_task.py index e65c93a..bdc668c 100644 --- a/common_task.py +++ b/common_task.py @@ -43,7 +43,7 @@ def read_s3_file(filenameInS3): # # Print or process the file contents # print(file_content.decode('utf-8')) # Assumes the file is text; adjust accordingly -def do_the_difference(today_file, last_file, column_for_diff, fresh_output, expired_output, common_output=None, gi): +def do_the_difference(today_file, last_file, column_for_diff, fresh_output, expired_output, common_output, gi): today_df = pd.read_csv(today_file) last_file_df = pd.read_csv(last_file) print(today_df.shape, last_file_df.shape)