11 lines
184 B
11 lines
184 B
11 months ago
|
import sys
|
||
|
|
||
|
|
||
|
__all__ = ['ZipPath']
|
||
|
|
||
|
|
||
|
if sys.version_info >= (3, 10):
|
||
|
from zipfile import Path as ZipPath # type: ignore
|
||
|
else:
|
||
|
from zipp import Path as ZipPath # type: ignore
|