Skip to content

Commit

Permalink
fix: static analysis comments have been removed
Browse files Browse the repository at this point in the history
  • Loading branch information
mcesariniflu committed Feb 4, 2025
1 parent eb7b274 commit 1a4678d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fluster/decoders/chromium.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion fluster/fluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.")

Expand Down

0 comments on commit 1a4678d

Please sign in to comment.