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

Commit

Permalink
Antilint
Browse files Browse the repository at this point in the history
  • Loading branch information
reivilibre committed Feb 4, 2022
1 parent 43eb922 commit d036dac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 4 additions & 2 deletions synapse/appservice/scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
List,
Optional,
Set,
Tuple
Tuple,
)

from synapse.appservice import (
Expand Down Expand Up @@ -160,7 +160,9 @@ class _ServiceQueuer:
appservice at a given time.
"""

def __init__(self, txn_ctrl: "_TransactionController", clock: Clock, hs: "HomeServer"):
def __init__(
self, txn_ctrl: "_TransactionController", clock: Clock, hs: "HomeServer"
):
# dict of {service_id: [events]}
self.queued_events: Dict[str, List[EventBase]] = {}
# dict of {service_id: [events]}
Expand Down
4 changes: 3 additions & 1 deletion synapse/storage/databases/main/end_to_end_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import abc
from typing import (TYPE_CHECKING, Collection,
from typing import (
TYPE_CHECKING,
Collection,
Dict,
Iterable,
List,
Expand Down

0 comments on commit d036dac

Please sign in to comment.