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 2480af4 commit 2bdf891Copy full SHA for 2bdf891
services/web/server/src/simcore_service_webserver/fogbugz/_client.py
@@ -128,7 +128,7 @@ async def get_case_status(self, case_id: str) -> str:
128
raise ValueError(msg)
129
130
# Get the status from the found case
131
- status = target_case.get("sStatus", "")
+ status: str = target_case.get("sStatus", "")
132
if not status:
133
msg = f"Status not found for case {case_id}"
134
0 commit comments