mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-08-10 00:18:57 +00:00
code style
This commit is contained in:
@@ -273,10 +273,9 @@ class DocumentParser(LoggingMixin):
|
||||
self.date = None
|
||||
self.progress_callback = progress_callback
|
||||
|
||||
def progress(self, current, max):
|
||||
print(self.progress_callback)
|
||||
def progress(self, current_progress, max_progress):
|
||||
if self.progress_callback:
|
||||
self.progress_callback(current, max)
|
||||
self.progress_callback(current_progress, max_progress)
|
||||
|
||||
def extract_metadata(self, document_path, mime_type):
|
||||
return []
|
||||
|
Reference in New Issue
Block a user