File: enum.py

package info (click to toggle)
pyswitchbot 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,004 kB
  • sloc: python: 15,513; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 125 bytes parent folder | download
1
2
3
4
5
6
7
"""Enum backports from standard lib."""

from __future__ import annotations

from enum import StrEnum

__all__ = ["StrEnum"]