Remove type hint

This commit is contained in:
Christian Bastian
2024-09-07 21:00:15 -04:00
parent b6562851e1
commit 1c83e1e028

View File

@@ -243,7 +243,7 @@ def get_def_headers(url=""):
return def_headers
def civitai_get_model_info(sha256_hash: str):
def civitai_get_model_info(sha256_hash):
url_api_hash = r"https://civitai.com/api/v1/model-versions/by-hash/" + sha256_hash
hash_response = requests.get(url_api_hash)
if hash_response.status_code != 200: