From 1a4678dfeaae0fee3187ca840bd871ecf376afe0 Mon Sep 17 00:00:00 2001 From: mcesariniflu Date: Tue, 4 Feb 2025 17:38:38 +0100 Subject: [PATCH] fix: static analysis comments have been removed --- fluster/decoders/chromium.py | 2 +- fluster/fluster.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fluster/decoders/chromium.py b/fluster/decoders/chromium.py index 04ff48e8..b965fd81 100644 --- a/fluster/decoders/chromium.py +++ b/fluster/decoders/chromium.py @@ -21,7 +21,7 @@ from fluster.decoder import Decoder, register_decoder try: - from fluster_chromium import main # type: ignore + from fluster_chromium import main HAS_FLUSTER_CHROMIUM = True except ImportError: diff --git a/fluster/fluster.py b/fluster/fluster.py index c8f71e5e..08025259 100644 --- a/fluster/fluster.py +++ b/fluster/fluster.py @@ -341,7 +341,7 @@ def _show_summary_if_needed(self, ctx: Context, results: Dict[str, List[Tuple[De @staticmethod def _generate_junit_summary(ctx: Context, results: Dict[str, List[Tuple[Decoder, TestSuite]]]) -> None: try: - import junitparser as junitp # type: ignore + import junitparser as junitp except ImportError: sys.exit("error: junitparser required to use JUnit format. Please install with pip install junitparser.")