From e15e02a86904cf6f322c24f77e5d605c3c82f85a Mon Sep 17 00:00:00 2001 From: Christophe Vandeplas Date: Fri, 30 Aug 2024 08:32:31 +0200 Subject: [PATCH] fix: [timeliner] fix silly mistake of committing local change --- analysers/timeliner.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/analysers/timeliner.py b/analysers/timeliner.py index 9b03213..6aa87ff 100644 --- a/analysers/timeliner.py +++ b/analysers/timeliner.py @@ -31,7 +31,7 @@ def __init__(self, config: dict, case_id: str): # Mandatory: timestamps must be in microseconds !!! # {"message": "A message","timestamp": 123456789,"datetime": "2015-07-24T19:01:01+00:00","timestamp_desc": "Write time","extra_field_1": "foo"} - def a__extract_ts_mobileactivation(self) -> Generator[dict, None, None]: + def __extract_ts_mobileactivation(self) -> Generator[dict, None, None]: try: p = MobileActivationParser(self.config, self.case_id) data = p.get_result() @@ -52,7 +52,7 @@ def a__extract_ts_mobileactivation(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from mobileactivation file. Reason: {str(e)}") - def a__extract_ts_powerlogs(self) -> Generator[dict, None, None]: + def __extract_ts_powerlogs(self) -> Generator[dict, None, None]: try: p = PowerLogsParser(self.config, self.case_id) data = p.get_result() @@ -66,7 +66,7 @@ def a__extract_ts_powerlogs(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from powerlogs. Reason: {str(e)}") - def a__extract_ts_swcutil(self) -> Generator[dict, None, None]: + def __extract_ts_swcutil(self) -> Generator[dict, None, None]: try: p = SwcutilParser(self.config, self.case_id) data = p.get_result() @@ -89,7 +89,7 @@ def a__extract_ts_swcutil(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from swcutil. Reason {str(e)}") - def a__extract_ts_accessibility_tcc(self) -> Generator[dict, None, None]: + def __extract_ts_accessibility_tcc(self) -> Generator[dict, None, None]: try: p = AccessibilityTccParser(self.config, self.case_id) data = p.get_result() @@ -108,7 +108,7 @@ def a__extract_ts_accessibility_tcc(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from accessibility_tcc. Reason {str(e)}") - def a__extract_ts_shutdownlogs(self) -> Generator[dict, None, None]: + def __extract_ts_shutdownlogs(self) -> Generator[dict, None, None]: try: p = ShutdownLogsParser(self.config, self.case_id) data = p.get_result() @@ -130,7 +130,7 @@ def a__extract_ts_shutdownlogs(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from shutdownlog. Reason: {str(e)}") - def a__extract_ts_logarchive(self) -> Generator[dict, None, None]: + def __extract_ts_logarchive(self) -> Generator[dict, None, None]: try: p = LogarchiveParser(self.config, self.case_id) data = p.get_result() @@ -151,7 +151,7 @@ def a__extract_ts_logarchive(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from logarchive. Reason: {str(e)}") - def a__extract_ts_wifisecurity(self) -> Generator[dict, None, None]: + def __extract_ts_wifisecurity(self) -> Generator[dict, None, None]: try: p = WifiSecurityParser(self.config, self.case_id) data = p.get_result() @@ -182,7 +182,7 @@ def a__extract_ts_wifisecurity(self) -> Generator[dict, None, None]: except Exception as e: print(f"ERROR while extracting timestamp from wifisecurity. Reason {str(e)}") - def a__extract_ts_wifi_known_networks(self) -> Generator[dict, None, None]: + def __extract_ts_wifi_known_networks(self) -> Generator[dict, None, None]: try: p = WifiKnownNetworksParser(self.config, self.case_id) data = p.get_result()