Skip to content

Commit

Permalink
support tracking params completely
Browse files Browse the repository at this point in the history
  • Loading branch information
skshetry committed Jun 14, 2023
1 parent 609d9dd commit 80e7b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dvc/pydantic_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class Stage(BaseModel):
cmd: OneOrMore[str]
wdir: Optional[PathLike] = None
deps: List[PathLike] = Field(default_factory=list)
params: List[Union[ParamPath, Dict[PathLike, List[ParamPath]]]] = Field(
params: List[Union[ParamPath, Dict[PathLike, Optional[List[ParamPath]]]]] = Field(
default_factory=list
)
frozen: bool = False
Expand Down

0 comments on commit 80e7b65

Please sign in to comment.