Remove unused variables

This commit is contained in:
deepsource-autofix[bot] 2020-07-07 15:01:22 +00:00 committed by GitHub
parent 2979cbce0c
commit bce0d339ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@ def mod_image_repeat_rows(
elif repeat:
try:
pixels[x, y] = row_to_repeat[x + offsets[num_repeats]]
except Exception as e:
except Exception:
pixels[x, y] = row_to_repeat[x - offsets[num_repeats]]
else:
pixels[x, y] = (r, g, b)
@ -104,7 +104,7 @@ def add_date(img_path, out_name="image.jpg", bottom_offset=0):
date_str_2 = date_obj.strftime("%b. %d %Y")
corner_offset = 50
img = Image.open(img_path)
width, height = img.size
_, height = img.size
draw = ImageDraw.Draw(img)
font = ImageFont.truetype("src/VCR_OSD_MONO_1.001.ttf", 64)
draw.text(

View File

@ -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)