avoid too-many-lines error from pylint

This commit is contained in:
mmontol 2023-08-07 14:07:27 +08:00
parent bcd669742d
commit 5c98d7deec

View file

@ -42,7 +42,7 @@ class Board:
self.detector = detector
self._board_id = None
# pylint: disable=invalid-name, protected-access, too-many-return-statements
# pylint: disable=invalid-name, protected-access, too-many-return-statements, too-many-lines
@property
def id(self) -> Optional[str]:
"""Return a unique id for the detected board, if any."""