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