Skip to content

Commit 84e4aa4

Browse files
committed
Remove print statements
1 parent 56cf8b7 commit 84e4aa4

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

datajoint/external.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,6 @@ def _remove_external_file(self, external_path):
127127
if self.spec['protocol'] == 's3':
128128
self.s3.remove_object(external_path)
129129
elif self.spec['protocol'] == 'file':
130-
print('we have reached the unlink statement in datajoint')
131-
print(external_path)
132-
print(Path(external_path).is_file())
133130
Path(external_path).unlink()
134131

135132
def exists(self, external_filepath):
@@ -342,7 +339,6 @@ def delete(self, *, delete_external_files=None, limit=None, display_progress=Tru
342339
for uuid, external_path in items:
343340
try:
344341
count = len(self & {'hash': uuid}) # optimize
345-
print(f'\n\n\nCOUNT IS: {count}')
346342
except Exception:
347343
pass # if delete failed, do not remove the external file
348344
else:

0 commit comments

Comments
 (0)