diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-05-31 07:18:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-31 07:18:29 -0400 |
commit | c01343de43b86eb4a6c055547369d07c198a435f (patch) | |
tree | af7939b9a5ee9990f469f8a143eb2e3fc19ff3be /synapse/api | |
parent | Merge branch 'release-v1.85' into develop (diff) | |
download | synapse-c01343de43b86eb4a6c055547369d07c198a435f.tar.xz |
Add stricter mypy options (#15694)
Enable warn_unused_configs, strict_concatenate, disallow_subclassing_any, and disallow_incomplete_defs.
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth/msc3861_delegated.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/api/auth/msc3861_delegated.py b/synapse/api/auth/msc3861_delegated.py index 31c1de0119..bd4fc9c0ee 100644 --- a/synapse/api/auth/msc3861_delegated.py +++ b/synapse/api/auth/msc3861_delegated.py @@ -59,7 +59,7 @@ def scope_to_list(scope: str) -> List[str]: return scope.strip().split(" ") -class PrivateKeyJWTWithKid(PrivateKeyJWT): +class PrivateKeyJWTWithKid(PrivateKeyJWT): # type: ignore[misc] """An implementation of the private_key_jwt client auth method that includes a kid header. This is needed because some providers (Keycloak) require the kid header to figure |