mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-13 23:43:45 +01:00
parent
7469fa7585
commit
81b1c56288
2 changed files with 12 additions and 1 deletions
1
changelog.d/16780.misc
Normal file
1
changelog.d/16780.misc
Normal file
|
@ -0,0 +1 @@
|
|||
Simplify event internal metadata class.
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue