0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-14 08:38:24 +02:00

Fix linting (#16780)

Introduced in #16762
This commit is contained in:
Erik Johnston 2024-01-05 13:29:00 +00:00 committed by GitHub
parent 7469fa7585
commit 81b1c56288
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 1 deletions

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

@ -0,0 +1 @@
Simplify event internal metadata class.

View file

@ -26,7 +26,17 @@ import random
import string
from collections import OrderedDict
from http import HTTPStatus
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Dict, List, Optional, Tuple
from typing import (
TYPE_CHECKING,
Any,
Awaitable,
Callable,
Dict,
List,
Optional,
Tuple,
cast,
)
import attr
from typing_extensions import TypedDict