File: types.py

package info (click to toggle)
python-nbxmpp 6.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,340 kB
  • sloc: python: 19,639; makefile: 4
file content (7 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from typing import Literal

from nbxmpp.const import ConnectionProtocol
from nbxmpp.const import ConnectionType

BlockingReportValues = Literal["spam", "abuse"]
CustomHostT = tuple[str, ConnectionProtocol, ConnectionType]