File: state.py

package info (click to toggle)
python-asusrouter 1.21.3-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,856 kB
  • sloc: python: 20,497; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 253 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""State endpoint module."""

from __future__ import annotations

from typing import Any


def read(content: str, **kwargs: Any) -> dict[str, Any]:
    """Read state data."""

    # Read the json content
    state: dict[str, Any] = {}

    return state