1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-24 06:50:51 +00:00
bazarr/libs/importlib_resources/compat/py39.py

11 lines
152 B
Python
Raw Normal View History

import sys
__all__ = ['ZipPath']
if sys.version_info >= (3, 10):
2025-01-18 15:02:09 +00:00
from zipfile import Path as ZipPath
else:
2025-01-18 15:02:09 +00:00
from zipp import Path as ZipPath