We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6651e4 commit 0042efaCopy full SHA for 0042efa
sentry_sdk/integrations/asyncio.py
@@ -156,14 +156,14 @@ async def async_entrypoint():
156
enable_asyncio_integration()
157
```
158
159
- Any arguments provided will be passed to AsyncioIntegration() as-is.
+ Any arguments provided will be passed to AsyncioIntegration() as is.
160
161
If AsyncioIntegration is already enabled (e.g. because it was provided in
162
sentry_sdk.init(integrations=[...])), this function won't have any effect.
163
164
If AsyncioIntegration was provided in
165
sentry_sdk.init(disabled_integrations=[...]), this function will ignore that
166
- and enable it.
+ and the integration will be enabled.
167
"""
168
client = sentry_sdk.get_client()
169
if not client.is_active():
0 commit comments