ai-content-maker/.venv/Lib/site-packages/pydantic/_internal/_internal_dataclass.py

11 lines
207 B
Python
Raw Normal View History

2024-05-03 04:18:51 +03:00
import sys
from typing import Any, Dict
dataclass_kwargs: Dict[str, Any]
# `slots` is available on Python >= 3.10
if sys.version_info >= (3, 10):
slots_true = {'slots': True}
else:
slots_true = {}