Skip to content

Commit

Permalink
remove string split
Browse files Browse the repository at this point in the history
  • Loading branch information
akshualy authored Oct 14, 2024
1 parent 86b3ee7 commit d37c9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alune/screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def get_image_from_path(path: str) -> MatLike | None:
image_to_find = cv2.imread(path, 0)

if image_to_find is None:
logger.warning(f"The image {path} does not exist on the system " f"or we do not have permission to read it.")
logger.warning(f"The image {path} does not exist on the system, or we do not have permission to read it.")
return None

return image_to_find
Expand Down

0 comments on commit d37c9d2

Please sign in to comment.