File size: 246 Bytes
065fee7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
from __future__ import annotations

from collections.abc import Mapping
import sys
from typing import Any

DATACLASS_KWARGS: Mapping[str, Any]
if sys.version_info >= (3, 10):
    DATACLASS_KWARGS = {"slots": True}
else:
    DATACLASS_KWARGS = {}