1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-23 22:41:34 +00:00
bazarr/libs/importlib_resources/compat/py39.py
2025-01-18 10:02:09 -05:00

10 lines
152 B
Python

import sys
__all__ = ['ZipPath']
if sys.version_info >= (3, 10):
from zipfile import Path as ZipPath
else:
from zipp import Path as ZipPath