Skip to content

Commit

Permalink
BaselineEvaluator: type fixes for MetricComparison
Browse files Browse the repository at this point in the history
Signed-off-by: Ondrej Lichtner <[email protected]>
  • Loading branch information
olichtne committed Feb 1, 2024
1 parent 581d4ce commit d274332
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lnst/RecipeCommon/Perf/Evaluators/BaselineEvaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ class MetricComparison:
measurement_type: str
current_result: PerfMeasurementResults
baseline_result: Optional[PerfMeasurementResults]
threshold: float
threshold: Optional[float]
metric_name: str
difference: float
difference: Optional[float]
comparison_result: ResultType
text: str

Expand Down

0 comments on commit d274332

Please sign in to comment.