Skip to content

Commit

Permalink
Inherit from CoverityChecker
Browse files Browse the repository at this point in the history
  • Loading branch information
JokeWaumans committed Jun 11, 2024
1 parent eb07b08 commit 08f2fb7
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mlx/warnings/coverity_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@

from mlx.coverity import CoverityConfigurationService, CoverityDefectService
from urllib.error import URLError
from .warnings_checker import WarningsChecker
from .regex_checker import CoverityChecker

class CoverityServerChecker(WarningsChecker):
class CoverityServerChecker(CoverityChecker):
name = 'coverityserver'
transport = 'http'
port = '8080'
Expand Down Expand Up @@ -37,7 +36,7 @@ def __init__(self, verbose=False):
self._fill_vars(config)
self.classification = "Pending,Bug,Unclassified"

super(CoverityChecker, self).__init__(verbose=verbose)
super().__init__(verbose=verbose)

def _extract_args(self, logfile):
'''
Expand Down

0 comments on commit 08f2fb7

Please sign in to comment.