mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 05:01:14 -07:00
10 lines
207 B
Python
10 lines
207 B
Python
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 = {}
|