mirror of
https://github.com/azaion/annotations.git
synced 2026-04-22 15:06:29 +00:00
Errors sending to UI
notifying client of AI model conversion
This commit is contained in:
@@ -31,10 +31,10 @@ cdef class CDNManager:
|
||||
print(e)
|
||||
return False
|
||||
|
||||
cdef download(self, str bucket, str filename):
|
||||
cdef download(self, str folder, str filename):
|
||||
try:
|
||||
self.download_client.download_file(bucket, filename, filename)
|
||||
print(f'downloaded {filename} from the {bucket} to current folder')
|
||||
self.download_client.download_file(folder, filename, f'{folder}\\{filename}')
|
||||
print(f'downloaded {filename} from the {folder} to current folder')
|
||||
return True
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
||||
Reference in New Issue
Block a user