mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	[fix] remove unused code / _STORAGE_UNIT_VALUE
				
					
				
			The `_STORAGE_UNIT_VALUE` dictionary is a left over from: - https://github.com/searxng/searxng/pull/3570 in this PR we removed the old implementations but forgot to delete this `_STORAGE_UNIT_VALUE`. Closes: https://github.com/searxng/searxng/pull/3672 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
		
							parent
							
								
									b9ddd59c5b
								
							
						
					
					
						commit
						e31b06b686
					
				@ -44,16 +44,6 @@ _JS_QUOTE_KEYS_RE = re.compile(r'([\{\s,])(\w+)(:)')
 | 
				
			|||||||
_JS_VOID_RE = re.compile(r'void\s+[0-9]+|void\s*\([0-9]+\)')
 | 
					_JS_VOID_RE = re.compile(r'void\s+[0-9]+|void\s*\([0-9]+\)')
 | 
				
			||||||
_JS_DECIMAL_RE = re.compile(r":\s*\.")
 | 
					_JS_DECIMAL_RE = re.compile(r":\s*\.")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
_STORAGE_UNIT_VALUE: Dict[str, int] = {
 | 
					 | 
				
			||||||
    'TB': 1024 * 1024 * 1024 * 1024,
 | 
					 | 
				
			||||||
    'GB': 1024 * 1024 * 1024,
 | 
					 | 
				
			||||||
    'MB': 1024 * 1024,
 | 
					 | 
				
			||||||
    'TiB': 1000 * 1000 * 1000 * 1000,
 | 
					 | 
				
			||||||
    'GiB': 1000 * 1000 * 1000,
 | 
					 | 
				
			||||||
    'MiB': 1000 * 1000,
 | 
					 | 
				
			||||||
    'KiB': 1000,
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
_XPATH_CACHE: Dict[str, XPath] = {}
 | 
					_XPATH_CACHE: Dict[str, XPath] = {}
 | 
				
			||||||
_LANG_TO_LC_CACHE: Dict[str, Dict[str, str]] = {}
 | 
					_LANG_TO_LC_CACHE: Dict[str, Dict[str, str]] = {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user