Skip to content

Commit

Permalink
Rename result field to data in Result class for improved clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianliebig committed Nov 11, 2024
1 parent 7f7ea4e commit b3a151b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmarks/result/result.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Result(SerialMixin):
benchmark_identifier: str = field(validator=instance_of(str))
"""The identifier of the benchmark that produced the result."""

result: DataFrame = field(validator=instance_of(DataFrame))
data: DataFrame = field(validator=instance_of(DataFrame))
"""The result of the benchmarked callable."""

metadata: ResultMetadata = field(validator=instance_of(ResultMetadata))
Expand Down

0 comments on commit b3a151b

Please sign in to comment.