From 4500eb937f662ec273d61dc90d83560d6e52a54d Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Fri, 28 Jun 2024 10:45:52 +0300 Subject: [PATCH] Drop redundant dependency from download_models.py --- samples/dnn/download_models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/samples/dnn/download_models.py b/samples/dnn/download_models.py index 4d94765182..f4dd45559a 100644 --- a/samples/dnn/download_models.py +++ b/samples/dnn/download_models.py @@ -3,7 +3,6 @@ Helper module to download extra data from Internet ''' from __future__ import print_function import os -import cv2 import sys import yaml import argparse @@ -361,4 +360,4 @@ if __name__ == '__main__': if selected_model_name and not m.name.startswith(selected_model_name): continue print('Model: ' + selected_model_name) - m.get() \ No newline at end of file + m.get()