mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-05 20:51:15 -07: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']
|