Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Miryam-Schwartz committed Dec 4, 2024
1 parent 7c6e56c commit ba0a836
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,7 @@
class IBDIAGNETLogAnalyzer(BaseAnalyzer):
def __init__(self, logs_csvs: List[str], hours: int, dest_image_path):
super().__init__(logs_csvs, hours, dest_image_path, sort_timestamp=False)
self._funcs_for_analysis = {
self.save_fabric_size,
self.print_fabric_size,
}
self._funcs_for_analysis = {self.save_fabric_size}

def print_fabric_size(self):
fabric_info = self.get_fabric_size()
Expand All @@ -35,3 +32,7 @@ def get_fabric_size(self):
def save_fabric_size(self):
fabric_info = self.get_fabric_size()
self._dataframes_for_pdf.append(("Fabric info", fabric_info))

def full_analysis(self):
super().full_analysis()
self.print_fabric_size()

0 comments on commit ba0a836

Please sign in to comment.