aboutsummaryrefslogtreecommitdiff
path: root/src/VHSImage.py
diff options
context:
space:
mode:
authordeepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>2020-07-07 15:01:22 +0000
committerGitHub <noreply@github.com>2020-07-07 15:01:22 +0000
commitbce0d339aca6cdd61079cccf629ce225b3debf01 (patch)
treede4dda2ced71951997aaed86c6b1f8d3589101de /src/VHSImage.py
parent2979cbce0ce5d0d0c2450ae92304c56eb9f4e55b (diff)
Remove unused variables
Diffstat (limited to 'src/VHSImage.py')
-rw-r--r--src/VHSImage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/VHSImage.py b/src/VHSImage.py
index b9042d2..fc21adc 100644
--- a/src/VHSImage.py
+++ b/src/VHSImage.py
@@ -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(