From 83e111f088f62494d0774a2d5457d46bcde8d4cb Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 7 Aug 2022 19:37:45 +0200 Subject: [PATCH] Fix lint --- great_ai/parameters/log_metric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/great_ai/parameters/log_metric.py b/great_ai/parameters/log_metric.py index 2b49879..f307573 100644 --- a/great_ai/parameters/log_metric.py +++ b/great_ai/parameters/log_metric.py @@ -5,7 +5,7 @@ from ..tracing import TracingContext -def log_metric(argument_name: str, value: Any, disable_logging: bool=False) -> None: +def log_metric(argument_name: str, value: Any, disable_logging: bool = False) -> None: """Log a key (argument_name)-value pair that is persisted inside the trace. The name of the function from where this is called is also stored.