Move type annotation into docstring
This commit is contained in:
parent
5c3363233c
commit
e4ec82ce0f
|
@ -19,7 +19,6 @@ import itertools
|
||||||
import logging
|
import logging
|
||||||
from collections import Counter as c_counter, OrderedDict, namedtuple
|
from collections import Counter as c_counter, OrderedDict, namedtuple
|
||||||
from functools import wraps
|
from functools import wraps
|
||||||
from typing import Collection
|
|
||||||
|
|
||||||
from six import iteritems, text_type
|
from six import iteritems, text_type
|
||||||
from six.moves import range
|
from six.moves import range
|
||||||
|
@ -1737,7 +1736,7 @@ class EventsStore(
|
||||||
return state_groups
|
return state_groups
|
||||||
|
|
||||||
def purge_unreferenced_state_groups(
|
def purge_unreferenced_state_groups(
|
||||||
self, room_id: str, state_groups_to_delete: Collection[int]
|
self, room_id: str, state_groups_to_delete
|
||||||
) -> defer.Deferred:
|
) -> defer.Deferred:
|
||||||
"""Deletes no longer referenced state groups and de-deltas any state
|
"""Deletes no longer referenced state groups and de-deltas any state
|
||||||
groups that reference them.
|
groups that reference them.
|
||||||
|
@ -1745,7 +1744,8 @@ class EventsStore(
|
||||||
Args:
|
Args:
|
||||||
room_id: The room the state groups belong to (must all be in the
|
room_id: The room the state groups belong to (must all be in the
|
||||||
same room).
|
same room).
|
||||||
state_groups_to_delete: Set of all state groups to delete.
|
state_groups_to_delete (Collection[int]): Set of all state groups
|
||||||
|
to delete.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
return self.runInteraction(
|
return self.runInteraction(
|
||||||
|
|
Loading…
Reference in New Issue