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
12 lines
230 B
Python
12 lines
230 B
Python
import os
|
|
import sys
|
|
|
|
from typing import Union
|
|
|
|
|
|
if sys.version_info >= (3, 9):
|
|
StrPath = Union[str, os.PathLike[str]]
|
|
else:
|
|
# PathLike is only subscriptable at runtime in 3.9+
|
|
StrPath = Union[str, "os.PathLike[str]"]
|