mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-12 07:03:12 +00:00
9 lines
204 B
Python
9 lines
204 B
Python
|
try:
|
||
|
from pydantic import validate_call # type: ignore
|
||
|
except ImportError:
|
||
|
# Pydantic 1
|
||
|
from pydantic import validate_arguments as validate_call # type: ignore
|
||
|
|
||
|
|
||
|
__all__ = ['validate_call']
|