mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
Fix a type annotation in test_account_data.py
and remove it from the Mypy exclusion list. (#11657)
Co-authored-by: Patrick Cloke <clokep@users.noreply.github.com>
This commit is contained in:
parent
f82d38ed2e
commit
2c7f5e74e5
1
changelog.d/11657.misc
Normal file
1
changelog.d/11657.misc
Normal file
@ -0,0 +1 @@
|
|||||||
|
Add missing type hints to storage classes.
|
1
mypy.ini
1
mypy.ini
@ -100,7 +100,6 @@ exclude = (?x)
|
|||||||
|tests/server.py
|
|tests/server.py
|
||||||
|tests/server_notices/test_resource_limits_server_notices.py
|
|tests/server_notices/test_resource_limits_server_notices.py
|
||||||
|tests/state/test_v2.py
|
|tests/state/test_v2.py
|
||||||
|tests/storage/test_account_data.py
|
|
||||||
|tests/storage/test_background_update.py
|
|tests/storage/test_background_update.py
|
||||||
|tests/storage/test_base.py
|
|tests/storage/test_base.py
|
||||||
|tests/storage/test_client_ips.py
|
|tests/storage/test_client_ips.py
|
||||||
|
@ -12,7 +12,7 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from typing import Iterable, Set
|
from typing import Iterable, Optional, Set
|
||||||
|
|
||||||
from synapse.api.constants import AccountDataTypes
|
from synapse.api.constants import AccountDataTypes
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ class IgnoredUsersTestCase(unittest.HomeserverTestCase):
|
|||||||
self.user = "@user:test"
|
self.user = "@user:test"
|
||||||
|
|
||||||
def _update_ignore_list(
|
def _update_ignore_list(
|
||||||
self, *ignored_user_ids: Iterable[str], ignorer_user_id: str = None
|
self, *ignored_user_ids: Iterable[str], ignorer_user_id: Optional[str] = None
|
||||||
) -> None:
|
) -> None:
|
||||||
"""Update the account data to block the given users."""
|
"""Update the account data to block the given users."""
|
||||||
if ignorer_user_id is None:
|
if ignorer_user_id is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user