-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #174 from matrix-org/format-with-ruff
chore: Format with ruff and lint
- Loading branch information
Showing
11 changed files
with
98 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ | |
import asyncio | ||
import os | ||
import signal | ||
from typing import Optional | ||
|
||
import click | ||
import janus | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,8 +11,7 @@ | |
url="https://github.com/matrix-org/pantalaimon", | ||
author="The Matrix.org Team", | ||
author_email="[email protected]", | ||
description=("A Matrix proxy daemon that adds E2E encryption " | ||
"capabilities."), | ||
description=("A Matrix proxy daemon that adds E2E encryption " "capabilities."), | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
license="Apache License, Version 2.0", | ||
|
@@ -29,7 +28,7 @@ | |
"cachetools >= 3.0.0", | ||
"prompt_toolkit > 2, < 4", | ||
"typing;python_version<'3.5'", | ||
"matrix-nio[e2e] >= 0.20, < 0.21" | ||
"matrix-nio[e2e] >= 0.20, < 0.21", | ||
], | ||
extras_require={ | ||
"ui": [ | ||
|
@@ -40,8 +39,10 @@ | |
] | ||
}, | ||
entry_points={ | ||
"console_scripts": ["pantalaimon=pantalaimon.main:main", | ||
"panctl=pantalaimon.panctl:main"], | ||
"console_scripts": [ | ||
"pantalaimon=pantalaimon.main:main", | ||
"panctl=pantalaimon.panctl:main", | ||
], | ||
}, | ||
zip_safe=False | ||
zip_safe=False, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.