Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
81b1c562
Unverified
Commit
81b1c562
authored
1 year ago
by
Erik Johnston
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix linting (#16780)
Introduced in #16762
parent
7469fa75
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
changelog.d/16780.misc
+1
-0
1 addition, 0 deletions
changelog.d/16780.misc
synapse/handlers/room.py
+11
-1
11 additions, 1 deletion
synapse/handlers/room.py
with
12 additions
and
1 deletion
changelog.d/16780.misc
0 → 100644
+
1
−
0
View file @
81b1c562
Simplify event internal metadata class.
This diff is collapsed.
Click to expand it.
synapse/handlers/room.py
+
11
−
1
View file @
81b1c562
...
@@ -26,7 +26,17 @@ import random
...
@@ -26,7 +26,17 @@ import random
import
string
import
string
from
collections
import
OrderedDict
from
collections
import
OrderedDict
from
http
import
HTTPStatus
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
import
attr
from
typing_extensions
import
TypedDict
from
typing_extensions
import
TypedDict
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment