From 6c405dcc7fb97b261d4077134678f8561144524e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Rebollo=20P=C3=A9rez?= Date: Tue, 25 Jun 2024 10:00:03 +0100 Subject: [PATCH] fix: docstring indentation --- .../wazuh_testing/tools/performance/visualization.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py b/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py index bb8127a260..85842c8ed4 100644 --- a/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py +++ b/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py @@ -458,13 +458,14 @@ class ClusterStatisticsVisualizer(DataVisualizer): expected_cluster_fields= ['node_name', 'activity', 'time_spent(s)'] def __init__(self, dataframes_paths, store_path=gettempdir(), base_name=None): - """Initialize the ClusterStatisticsVisualizer. + """Initialize the ClusterStatisticsVisualizer. Args: dataframes_paths (list): List of paths to dataframes containing cluster statistics data. store_path (str, optional): Path to store visualizations. Defaults to system temp directory. base_name (str, optional): Base name for saved visualizations. Defaults to None. """ + super().__init__(dataframes_paths, store_path, base_name) self._validate_dataframe()