we know what this is for
(path)
| 98 | |
| 99 | |
| 100 | def get_token(path): |
| 101 | """ |
| 102 | we know what this is for |
| 103 | """ |
| 104 | with open(path) as _token: |
| 105 | data = _token.read() |
| 106 | token, n = data.split(":") |
| 107 | for _ in range(int(n)): |
| 108 | token = base64.b64decode(token) |
| 109 | return token |
| 110 | |
| 111 | |
| 112 | def ensure_no_issue(param): |
no outgoing calls
no test coverage detected