We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e12a350 commit 9af0dc8Copy full SHA for 9af0dc8
mypy.ini
@@ -54,7 +54,8 @@ ignore_missing_imports = True
54
ignore_missing_imports = True
55
[mypy-pure_eval.*]
56
57
-
+[mypy-blinker.*]
58
+ignore_missing_imports = True
59
[mypy-sentry_sdk._queue]
60
61
disallow_untyped_defs = False
sentry_sdk/integrations/flask.py
@@ -43,6 +43,10 @@
43
except ImportError:
44
raise DidNotEnable("Flask is not installed")
45
46
+try:
47
+ import blinker # noqa
48
+except ImportError:
49
+ raise DidNotEnable("blinker is not installed")
50
51
TRANSACTION_STYLE_VALUES = ("endpoint", "url")
52
0 commit comments