Fix mangaocr

This commit is contained in:
AuroraWright
2025-10-18 16:12:22 +02:00
parent e0e3249e91
commit 4150d8ba45
2 changed files with 2 additions and 2 deletions

View File

@@ -389,7 +389,7 @@ class MangaOcr:
if not img:
return (False, 'Invalid image provided')
x = (True, self.model(img))
x = (True, [self.model(img)])
if is_path:
img.close()

View File

@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "owocr"
version = "1.18.3"
version = "1.18.4"
description = "Japanese OCR"
readme = "README.md"
requires-python = ">=3.11"