mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2024-11-14 17:40:24 -08:00
f98d6fff65
* Added Python3.12 and future 3.13 * Fix Radarr result handling * remove py2.7 and py3.7 support
11 lines
184 B
Python
11 lines
184 B
Python
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
|