mirror of
https://github.com/morpheus65535/bazarr
synced 2025-03-11 22:52:49 +00:00
8 lines
204 B
Python
8 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']
|