Skip to content

Commit fca8740

Browse files
committed
ref(transport): Fix mypy error
GH-4582
1 parent f5ef707 commit fca8740

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,7 @@ def flush( # type: ignore[override]
700700

701701
if timeout > 0:
702702
self._worker.submit(lambda: self._flush_client_reports(force=True))
703-
return self._worker.flush(timeout, callback)
703+
return self._worker.flush(timeout, callback) # type: ignore[func-returns-value]
704704
return None
705705

706706
def _get_pool_options(self: Self) -> Dict[str, Any]:

0 commit comments

Comments
 (0)