From 0d2cc21202620e92fd152981c6b7ecc0190a6124 Mon Sep 17 00:00:00 2001 From: Gary Mulder Date: Thu, 25 May 2023 11:50:02 +0000 Subject: [PATCH] Fixed repeated imports --- docker/hug_model.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/docker/hug_model.py b/docker/hug_model.py index 476f53c..848a1aa 100644 --- a/docker/hug_model.py +++ b/docker/hug_model.py @@ -25,9 +25,6 @@ def check_magic_and_version(filename): return magic, version -import os -import requests - def download_file(url, destination): print(f"Downloading {url} to {destination}...") response = requests.get(url, stream=True)