7 lines
152 B
Python
7 lines
152 B
Python
from typing import Any
|
|
|
|
|
|
class SysMixin:
|
|
def python_version(self) -> dict[str, Any]:
|
|
return self._get_json("/api/sys/python_version") or {}
|