Skip to content

Commit 0520847

Browse files
committed
fix: make type field of BuildArtifact optional
1 parent 4fce9a7 commit 0520847

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyartifactory/models/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class BuildRuns(BaseModel):
5454
class BuildArtifact(BaseModel):
5555
"""Models artifactory build artifact."""
5656

57-
type: str
57+
type: Optional[str] = None
5858
sha1: str
5959
sha256: str
6060
md5: str

0 commit comments

Comments
 (0)