Skip to content

Commit

Permalink
fix(configurable): fix the _excluded method reference
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniele-Tentoni committed Feb 11, 2022
1 parent e1dd669 commit 1cac78d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cc_codechecker/configurable.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def valued_items(self) -> list[tuple[str, Any]]:
"""

items = self.__dict__.items()
return [(k,v) for k, v in items if _excluded(k, v)]
return [(k,v) for k, v in items if self._excluded(k, v)]

def __repr__(self) -> str:
res = [f'{k}={v}' for k, v in self.valued_items()]
Expand Down

0 comments on commit 1cac78d

Please # to comment.