File: deprecated.py

package info (click to toggle)
python-graphene 3.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,120 kB
  • sloc: python: 8,935; makefile: 214; sh: 18
file content (5 lines) | stat: -rw-r--r-- 119 bytes parent folder | download
1
2
3
4
5
from warnings import warn


def warn_deprecation(text: str):
    warn(text, category=DeprecationWarning, stacklevel=2)