Skip to content

Commit 566eca3

Browse files
committed
mypy
1 parent e619405 commit 566eca3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1935,7 +1935,7 @@ def try_convert(convert_func, value):
19351935
given function. Return None if the conversion fails, i.e. if the function
19361936
raises an exception.
19371937
"""
1938-
if isinstance(value, convert_func):
1938+
if isinstance(value, convert_func): # type: ignore
19391939
return value
19401940

19411941
try:

0 commit comments

Comments
 (0)