File: request_options.py

package info (click to toggle)
python-stripe 12.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,864 kB
  • sloc: python: 157,573; makefile: 13; sh: 9
file content (18 lines) | stat: -rw-r--r-- 496 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
from typing_extensions import TYPE_CHECKING
from warnings import warn

warn(
    """
    The stripe.request_options package is deprecated, please change your
    imports to import from stripe directly.
    From:
      from stripe.request_options import RequestOptions
    To:
      from stripe import RequestOptions
    """,
    DeprecationWarning,
)
__deprecated__ = ["RequestOptions"]
if not TYPE_CHECKING:
    from stripe._request_options import RequestOptions  # noqa