Skip to content

Commit

Permalink
move import
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmazzola committed Mar 3, 2024
1 parent 6263255 commit 6cc5cb4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import re

import cv2
import PIL.Image as Image
from word2number import w2n


Expand Down Expand Up @@ -193,9 +194,6 @@ def copy_dir(src_dir, dst_dir):
copytree(src_dir, dst_dir)


import PIL.Image as Image


def get_image_size(img_path):
img = Image.open(img_path)
width, height = img.size
Expand Down

0 comments on commit 6cc5cb4

Please sign in to comment.