We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e61005 + 8437ddf commit cbb0e76Copy full SHA for cbb0e76
1 file changed
contribute.py
@@ -155,7 +155,6 @@ def decode_token(encoded_token):
155
files = [f for f in files if not f[0] == '.']
156
for filename in files:
157
path = f"{root}/{filename}"
158
- print(path)
159
if isImageFile(filename):
160
with open(file=path, mode='rb') as file:
161
image = file.read()
@@ -165,7 +164,6 @@ def decode_token(encoded_token):
165
164
content = file.read()
166
file_path = f'{DIR_PATH+remove_prefix(path,STUDY_NAME_PATH)}'
167
if(platform.uname()[0]=='Windows'): file_path=file_path.replace("\\","/")
168
- print('d',end="")
169
appendBlobInTree(repo,content,file_path,tree_content)
170
commitAndUpdateRef(repo,tree_content,base_ref.commit,branch)
171
runWorkflow(repo,upstream_repo)
0 commit comments