Skip to content

Commit c814818

Browse files
committed
Fix based on comment
1 parent 57e4591 commit c814818

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

packages/service-library/src/servicelib/rabbitmq/rpc_interfaces/webserver/functions/functions_rpc_interface.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -208,10 +208,7 @@ async def list_function_jobs_with_status(
208208
list[RegisteredFunctionJobWithStatus],
209209
PageMetaInfoLimitOffset,
210210
]:
211-
result: tuple[
212-
list[RegisteredFunctionJobWithStatus],
213-
PageMetaInfoLimitOffset,
214-
] = await rabbitmq_rpc_client.request(
211+
result = await rabbitmq_rpc_client.request(
215212
WEBSERVER_RPC_NAMESPACE,
216213
TypeAdapter(RPCMethodName).validate_python("list_function_jobs_with_status"),
217214
user_id=user_id,

0 commit comments

Comments
 (0)