From 8437ddf82e6a7bed41e157b53c9374e3a6a8e30d Mon Sep 17 00:00:00 2001 From: Parteek Goyal Date: Tue, 8 Aug 2023 18:47:20 +0530 Subject: [PATCH] removing log messages --- contribute.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/contribute.py b/contribute.py index c648261..83809d6 100644 --- a/contribute.py +++ b/contribute.py @@ -155,7 +155,6 @@ def decode_token(encoded_token): files = [f for f in files if not f[0] == '.'] for filename in files: path = f"{root}/{filename}" - print(path) if isImageFile(filename): with open(file=path, mode='rb') as file: image = file.read() @@ -165,7 +164,6 @@ def decode_token(encoded_token): content = file.read() file_path = f'{DIR_PATH+remove_prefix(path,STUDY_NAME_PATH)}' if(platform.uname()[0]=='Windows'): file_path=file_path.replace("\\","/") - print('d',end="") appendBlobInTree(repo,content,file_path,tree_content) commitAndUpdateRef(repo,tree_content,base_ref.commit,branch) runWorkflow(repo,upstream_repo)