From 661e507e4807bd5dab96b7fe5f0b562a4325abd1 Mon Sep 17 00:00:00 2001 From: Daniel Szoke Date: Mon, 4 Nov 2024 11:09:37 +0100 Subject: [PATCH] docs(hub): Correct typo in a comment --- sentry_sdk/hub.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sentry_sdk/hub.py b/sentry_sdk/hub.py index ec30e25419..7fda9202df 100644 --- a/sentry_sdk/hub.py +++ b/sentry_sdk/hub.py @@ -101,7 +101,7 @@ def current(cls): rv = _local.get(None) if rv is None: with _suppress_hub_deprecation_warning(): - # This will raise a deprecation warning; supress it since we already warned above. + # This will raise a deprecation warning; suppress it since we already warned above. rv = Hub(GLOBAL_HUB) _local.set(rv) return rv