From bce0d339aca6cdd61079cccf629ce225b3debf01 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Tue, 7 Jul 2020 15:01:22 +0000 Subject: Remove unused variables --- src/VHSVideo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/VHSVideo.py') diff --git a/src/VHSVideo.py b/src/VHSVideo.py index 9de2d66..7e23ad0 100644 --- a/src/VHSVideo.py +++ b/src/VHSVideo.py @@ -65,7 +65,7 @@ def generateVideo(outfile, path, infile): for i in range(len(files)): filename = path + str(files[i]) img = cv2.imread(filename) - height, width, layers = img.shape + height, width, _ = img.shape size = (width, height) frame_array.append(img) out = cv2.VideoWriter(outfile, cv2.VideoWriter_fourcc(*"MP4V"), fps, size) -- cgit v1.2.3