File: types.py

package info (click to toggle)
python-aiormq 6.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 392 kB
  • sloc: python: 3,214; makefile: 27
file content (11 lines) | stat: -rw-r--r-- 231 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
import warnings

from .abc import *  # noqa


warnings.warn(
    "aiormq.types was deprecated and will be removed in "
    "one of next major releases. Use aiormq.abc instead.",
    category=DeprecationWarning,
    stacklevel=2,
)