Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 5a3a5d9

Browse files
committed
Antilint
1 parent e0fbd84 commit 5a3a5d9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

synapse/appservice/scheduler.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
List,
5959
Optional,
6060
Set,
61-
Tuple
61+
Tuple,
6262
)
6363

6464
from synapse.appservice import (
@@ -160,7 +160,9 @@ class _ServiceQueuer:
160160
appservice at a given time.
161161
"""
162162

163-
def __init__(self, txn_ctrl: "_TransactionController", clock: Clock, hs: "HomeServer"):
163+
def __init__(
164+
self, txn_ctrl: "_TransactionController", clock: Clock, hs: "HomeServer"
165+
):
164166
# dict of {service_id: [events]}
165167
self.queued_events: Dict[str, List[EventBase]] = {}
166168
# dict of {service_id: [events]}

synapse/storage/databases/main/end_to_end_keys.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
import abc
17-
from typing import (TYPE_CHECKING, Collection,
17+
from typing import (
18+
TYPE_CHECKING,
19+
Collection,
1820
Dict,
1921
Iterable,
2022
List,

0 commit comments

Comments
 (0)