mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Remove unneded exception handler from has_alpha()
This commit is contained in:
		| @@ -67,14 +67,8 @@ class RasterisedDocumentParser(DocumentParser): | |||||||
|         ] |         ] | ||||||
|  |  | ||||||
|     def has_alpha(self, image): |     def has_alpha(self, image): | ||||||
|         try: |         with Image.open(image) as im: | ||||||
|             with Image.open(image) as im: |             return im.mode in ('RGBA', 'LA') | ||||||
|                 return im.mode in ('RGBA', 'LA') |  | ||||||
|         except Exception as e: |  | ||||||
|             self.log( |  | ||||||
|                 'warning', |  | ||||||
|                 f"Error while check for alpha channel in image {image}: {e}") |  | ||||||
|             return None |  | ||||||
|  |  | ||||||
|     def get_dpi(self, image): |     def get_dpi(self, image): | ||||||
|         try: |         try: | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Martin Müller
					Martin Müller