Suppressed pylint warning.

This commit is contained in:
Joe Testa 2020-10-20 16:21:56 -04:00
parent 1acfb01e61
commit ec76dac2fc

View File

@ -60,7 +60,7 @@ class Software:
return self.__os
def compare_version(self, other: Union[None, 'Software', str]) -> int:
# pylint: disable=too-many-branches
# pylint: disable=too-many-branches,too-many-return-statements
if other is None:
return 1
if isinstance(other, Software):