Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
drorlevy committed Dec 3, 2024
1 parent 5da2e4f commit 9164663
Showing 1 changed file with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ def __init__(
self.fix_lines_with_no_timestamp(logs_csvs)
super().__init__(logs_csvs, hours, dest_image_path, sort_timestamp)
self._log_data_sorted.dropna(subset=["data"], inplace=True)
self._funcs_for_analysis = {self.print_exceptions_per_time_count}
self._funcs_for_analysis = {
self.print_exceptions_per_time_count,
self.print_exceptions,
}

@staticmethod
def _extract_ufm_version(logs_csvs):
Expand Down Expand Up @@ -105,7 +108,3 @@ def print_exceptions_per_time_count(self):
"Amount of exceptions",
"Exceptions count",
)

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

0 comments on commit 9164663

Please sign in to comment.