(self, secret_key, issuer=None, alg="RS256")
| 30 | DEFAULT_EXPIRES_IN = 3600 |
| 31 | |
| 32 | def __init__(self, secret_key, issuer=None, alg="RS256"): |
| 33 | self.secret_key = import_any_key(secret_key) |
| 34 | self.issuer = issuer |
| 35 | self.alg = alg |
| 36 | |
| 37 | @staticmethod |
| 38 | def get_allowed_scope(client, scope): |
nothing calls this directly
no test coverage detected