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 a07dba7 commit 9db9e83Copy full SHA for 9db9e83
packages/service-library/src/servicelib/long_running_tasks/task.py
@@ -106,7 +106,7 @@ def _error_to_string(e: Exception) -> str:
106
107
108
def _error_from_string(error_str: str) -> Exception:
109
- return pickle.loads(base64.b85decode(error_str)) # noqa: S301
+ return pickle.loads(base64.b85decode(error_str)) # type: ignore[no-any-return] # noqa: S301
110
111
112
class TasksManager: # pylint:disable=too-many-instance-attributes
0 commit comments