Skip to content

Commit

Permalink
Fix base class error
Browse files Browse the repository at this point in the history
  • Loading branch information
seanpmorgan committed Jan 3, 2024
1 parent a4c246f commit cd6e1d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modelscan/issues.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ def __init__(self, scanner: str = "") -> None:

@abc.abstractmethod
def output_lines(self) -> List[str]:
raise NotImplemented
raise NotImplementedError

@abc.abstractmethod
def output_json(self) -> Dict[str, str]:
raise NotImplemented
raise NotImplementedError


class Issue:
Expand Down

0 comments on commit cd6e1d7

Please sign in to comment.