Skip to content

Commit

Permalink
fix(job): limit dict labels to str:str type
Browse files Browse the repository at this point in the history
  • Loading branch information
mostaphaRoudsari committed Dec 8, 2020
1 parent a3ff15d commit b4ff0fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion queenbee/job/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Job(BaseModel):
description='Run description.'
)

labels: Dict = Field(
labels: Dict[str, str] = Field(
None,
description='Optional user data as a dictionary. User data is for user reference'
' only and will not be used in the execution of the job.'
Expand Down

0 comments on commit b4ff0fb

Please sign in to comment.