File: types.py

package info (click to toggle)
openwebifpy 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 172 kB
  • sloc: python: 428; sh: 6; makefile: 3
file content (9 lines) | stat: -rw-r--r-- 146 bytes parent folder | download
1
2
3
4
5
6
7
8
9
"""Types for openwebif."""

from typing import TypedDict


class Bouquets(TypedDict):
    """The bouquets type."""

    bouquets: list[list[str]]