Decodes a token into a character.
(token)
| 45 | |
| 46 | @staticmethod |
| 47 | def decode_token(token): |
| 48 | """Decodes a token into a character.""" |
| 49 | return str(chr(max(32, token))) |
| 50 | |
| 51 | @staticmethod |
| 52 | def decode_tokens(tokens): |
nothing calls this directly
no outgoing calls
no test coverage detected