mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-23 22:41:34 +00:00
10 lines
152 B
Python
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
|