uawdijnntqw1x1x1
IP : 216.73.216.74
Hostname : server86.web-hosting.com
Kernel : Linux server86.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
servlmvm
/
..
/
.
/
..
/
..
/
home5
/
..
/
opt
/
hc_python
/
lib
/
python3.12
/
site-packages
/
sentry_sdk
/
types.py
/
/
""" This module contains type definitions for the Sentry SDK's public API. The types are re-exported from the internal module `sentry_sdk._types`. Disclaimer: Since types are a form of documentation, type definitions may change in minor releases. Removing a type would be considered a breaking change, and so we will only remove type definitions in major releases. """ from typing import TYPE_CHECKING if TYPE_CHECKING: # Re-export types to make them available in the public API from sentry_sdk._types import ( Breadcrumb, BreadcrumbHint, Event, EventDataCategory, Hint, Log, MonitorConfig, SamplingContext, ) else: from typing import Any # The lines below allow the types to be imported from outside `if TYPE_CHECKING` # guards. The types in this module are only intended to be used for type hints. Breadcrumb = Any BreadcrumbHint = Any Event = Any EventDataCategory = Any Hint = Any Log = Any MonitorConfig = Any SamplingContext = Any __all__ = ( "Breadcrumb", "BreadcrumbHint", "Event", "EventDataCategory", "Hint", "Log", "MonitorConfig", "SamplingContext", )
/home/servlmvm/.././../../home5/../opt/hc_python/lib/python3.12/site-packages/sentry_sdk/types.py