Skip to content

Commit 9db9e83

Browse files
author
Andrei Neagu
committed
mypy
1 parent a07dba7 commit 9db9e83

File tree

1 file changed

+1
-1
lines changed
  • packages/service-library/src/servicelib/long_running_tasks

1 file changed

+1
-1
lines changed

packages/service-library/src/servicelib/long_running_tasks/task.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def _error_to_string(e: Exception) -> str:
106106

107107

108108
def _error_from_string(error_str: str) -> Exception:
109-
return pickle.loads(base64.b85decode(error_str)) # noqa: S301
109+
return pickle.loads(base64.b85decode(error_str)) # type: ignore[no-any-return] # noqa: S301
110110

111111

112112
class TasksManager: # pylint:disable=too-many-instance-attributes

0 commit comments

Comments
 (0)