0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-26 06:28:20 +02:00

Ignore the jsonschema type. (#11817)

This commit is contained in:
Patrick Cloke 2022-01-25 06:07:10 -05:00 committed by GitHub
parent 2d327d25bf
commit 15c2a6a106
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

1
changelog.d/11817.misc Normal file
View file

@ -0,0 +1 @@
Compatibility with updated type hints for jsonschema 4.4.0.

View file

@ -246,7 +246,9 @@ POWER_LEVELS_SCHEMA = {
# This could return something newer than Draft 7, but that's the current "latest"
# validator.
def _create_power_level_validator() -> jsonschema.Draft7Validator:
#
# See https://github.com/python/typeshed/issues/7028 for the ignored return type.
def _create_power_level_validator() -> jsonschema.Draft7Validator: # type: ignore[valid-type]
validator = jsonschema.validators.validator_for(POWER_LEVELS_SCHEMA)
# by default jsonschema does not consider a frozendict to be an object so