mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-11-04 01:47:47 +03:00 
			
		
		
		
	Used isinstance instead of comparing types
This commit is contained in:
		
							parent
							
								
									63ae7fbfe9
								
							
						
					
					
						commit
						e51061dd59
					
				| 
						 | 
				
			
			@ -399,7 +399,7 @@ def _fixup_dict(src_dict):
 | 
			
		|||
    # returns a dict with any single item tuples/lists as individual values
 | 
			
		||||
    def _fixup(value):
 | 
			
		||||
        try:
 | 
			
		||||
            if len(value) == 1 and type(value) != type({}):
 | 
			
		||||
            if len(value) == 1 and not isinstance(value, dict):
 | 
			
		||||
                return value[0]
 | 
			
		||||
        except: pass
 | 
			
		||||
        return value
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue
	
	Block a user