From d782942bb412df8cf45d5f015efb72b929263c77 Mon Sep 17 00:00:00 2001 From: Anthony Ricaud Date: Mon, 1 Jul 2019 14:16:19 +0100 Subject: [PATCH] Add typings for CeleryIntegration.__init__ --- sentry_sdk/integrations/celery.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sentry_sdk/integrations/celery.py b/sentry_sdk/integrations/celery.py index 59ad6c980c..35e19fa7e9 100644 --- a/sentry_sdk/integrations/celery.py +++ b/sentry_sdk/integrations/celery.py @@ -24,6 +24,7 @@ class CeleryIntegration(Integration): identifier = "celery" def __init__(self, propagate_traces=True): + # type: (bool) -> None self.propagate_traces = propagate_traces @staticmethod