mirror of
https://github.com/hyugogirubato/cbz.git
synced 2026-09-26 13:31:00 +00:00
10 lines
212 B
Python
10 lines
212 B
Python
from .comic import ComicInfo
|
|
from .page import PageInfo
|
|
|
|
# Register optional Pillow plugins
|
|
for _plugin in ('pillow_avif', 'pillow_jxl'):
|
|
try:
|
|
__import__(_plugin)
|
|
except ImportError:
|
|
pass
|