From d357ad3e1d2a3b031c11826eb6fb1f44b02787b9 Mon Sep 17 00:00:00 2001 From: gokender Date: Fri, 19 Jul 2024 10:24:37 +0200 Subject: [PATCH] Fix pathlib import in "utils.py" --- cbz/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbz/utils.py b/cbz/utils.py index 7d62a4e..d8393c2 100644 --- a/cbz/utils.py +++ b/cbz/utils.py @@ -3,7 +3,7 @@ from io import BytesIO from PIL import Image from PIL.IcoImagePlugin import IcoFile -from path import Path +from pathlib import Path def default_attr(value: any) -> any: