Path 1: 9 calls (1.0)

'The keyword is unknown' (4) 'The = sign is missing after the keyword' (2) 'Missing keyword before assignment' (1) "The keyword doesn't support assign...

'disable' (3) 'unknown-keyword' (3) 'bouboule' (1) '' (1) 'disable-all' (1)

1def __init__(self, message: str, token: str) -> None:
2        """:args message: explain the reason why the exception has been thrown
3        :args token: token concerned by the exception.
4        """
5        self.message = message
6        self.token = token
7        super().__init__(self.message)