mirror of
https://github.com/lightbroker/llmsecops-research.git
synced 2026-07-05 12:37:53 +02:00
3 lines
120 B
Python
3 lines
120 B
Python
class Average:
|
|
def from_list_of_floats(self, floats: list[float]) -> float:
|
|
return sum(floats) / len(floats) |