Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
Forgot to include "2" in "cv2"
  • Loading branch information
adnv3k committed Sep 30, 2021
1 parent 50a14c1 commit e8c4ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Image_Queuer.py
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ def prepare_image_mods(self):
cvimage = self.convert_to_cvimage()
# Edge cases are handled
else:
cvimage = cv.imread(self.playlist[self.playlist_position])
cvimage = cv2.imread(self.playlist[self.playlist_position])

try:
height, width, chanel = cvimage.shape
Expand Down

0 comments on commit e8c4ddd

Please sign in to comment.