Metrics:
Total lines of code: 123
Total lines skipped (#nosec): 0

request_without_timeout: Requests call without timeout
Test ID: B113
Severity: MEDIUM
Confidence: LOW
CWE: CWE-400
File: /custom_nodes/LoadLoraWithTags/load_lora_with_tags.py
Line number: 30
More info: https://bandit.readthedocs.io/en/1.7.9/plugins/b113_request_without_timeout.html
26	        print(f"Error saving JSON to file: {e}")
27	
28	def get_model_version_info(hash_value):
29	    api_url = f"https://civitai.com/api/v1/model-versions/by-hash/{hash_value}"
30	    response = requests.get(api_url)
31	    
32	    if response.status_code == 200:
33	        return response.json()