Skip to content

Commit f393419

Browse files
committed
dont allow userid and productname to be none
1 parent f85fb59 commit f393419

File tree

1 file changed

+2
-2
lines changed
  • packages/models-library/src/models_library/api_schemas_rpc_async_jobs

1 file changed

+2
-2
lines changed

packages/models-library/src/models_library/api_schemas_rpc_async_jobs/async_jobs.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ class AsyncJobAbort(BaseModel):
4646
class AsyncJobNameData(BaseModel):
4747
"""Data for controlling access to an async job"""
4848

49-
user_id: UserID | None
50-
product_name: str | None
49+
user_id: UserID
50+
product_name: str

0 commit comments

Comments
 (0)