mirror of
https://gitlab.com/khumba/nvd.git
synced 2024-11-23 05:11:46 +01:00
Fix return type declaration of PackageSetPair.is_selection_state_changed().
This commit is contained in:
parent
e7d0ce0c89
commit
0ca2d3931b
1 changed files with 1 additions and 1 deletions
2
src/nvd
2
src/nvd
|
@ -334,7 +334,7 @@ class PackageSetPair:
|
|||
|
||||
return selection_state_str
|
||||
|
||||
def is_selection_state_changed(self, pname: str) -> str:
|
||||
def is_selection_state_changed(self, pname: str) -> bool:
|
||||
in_left_set = \
|
||||
self._left_set is not None and \
|
||||
self._left_set.contains_pname(pname)
|
||||
|
|
Loading…
Reference in a new issue