Skip to content

Commit

Permalink
Add num_entries_total to job model
Browse files Browse the repository at this point in the history
  • Loading branch information
shirte committed Dec 7, 2024
1 parent 2b6c9d6 commit d5f9979
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions nerdd_backend/data/job.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from datetime import datetime
from typing import Optional

from pydantic import BaseModel

Expand All @@ -12,3 +13,4 @@ class Job(BaseModel):
params: dict
created_at: datetime = datetime.now()
status: str
num_entries_total: Optional[int] = None

0 comments on commit d5f9979

Please sign in to comment.