Skip to content

Commit

Permalink
fix: Build.result must be optional (#5338)
Browse files Browse the repository at this point in the history
Co-authored-by: Camille Teruel <camille.teruel@meri.co>
  • Loading branch information
CamilleTeruel and Camille Teruel committed Jun 1, 2023
1 parent 55073ae commit 5e346fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/python/plugins/azuredevops/azuredevops/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ class BuildResult(Enum):
start_time: Optional[datetime.datetime]
finish_time: Optional[datetime.datetime]
status: BuildStatus
result: BuildResult
result: Optional[BuildResult]
source_branch: str
source_version: str

Expand Down

0 comments on commit 5e346fa

Please sign in to comment.