Skip to content

Commit

Permalink
random mypy error?
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Nov 21, 2024
1 parent 90d1336 commit 7b9261b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions llama_deploy/services/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,7 @@ class WorkflowState(BaseModel):
hash: Optional[int] = Field(
default=None, description="Hash of the context, if any."
)
state: Optional[dict] = Field(
default_factory=dict, description="Pickled state, if any."
)
state: dict = Field(default_factory=dict, description="Pickled state, if any.")
run_kwargs: Dict[str, Any] = Field(
default_factory=dict, description="Run kwargs needed to run the workflow."
)
Expand Down

0 comments on commit 7b9261b

Please sign in to comment.