typing: Apply trivial fixes to adjust edge cases in typing.

Add none-checks, rename variables (to avoid redefinition of
the same variable with different types error), add necessary
type annotations.

This is a part of #18777.

Signed-off-by: Zixuan James Li <359101898@qq.com>
This commit is contained in:
Zixuan James Li 2022-05-29 15:52:25 -04:00 committed by Tim Abbott
parent c34ac1fcd4
commit 63e9ae8389
10 changed files with 17 additions and 9 deletions

View File

@ -270,6 +270,7 @@ def main(options: argparse.Namespace) -> int:
destroy_leaked_test_databases, destroy_leaked_test_databases,
) )
assert settings.RABBITMQ_PASSWORD is not None
if options.is_force or need_to_run_configure_rabbitmq([settings.RABBITMQ_PASSWORD]): if options.is_force or need_to_run_configure_rabbitmq([settings.RABBITMQ_PASSWORD]):
run_as_root(["scripts/setup/configure-rabbitmq"]) run_as_root(["scripts/setup/configure-rabbitmq"])
write_new_digest( write_new_digest(

View File

@ -44,6 +44,7 @@ def do_remove_linkifier(
if pattern is not None: if pattern is not None:
RealmFilter.objects.get(realm=realm, pattern=pattern).delete() RealmFilter.objects.get(realm=realm, pattern=pattern).delete()
else: else:
assert id is not None
RealmFilter.objects.get(realm=realm, id=id).delete() RealmFilter.objects.get(realm=realm, id=id).delete()
notify_linkifiers(realm) notify_linkifiers(realm)

View File

@ -979,7 +979,8 @@ def do_rename_stream(stream: Stream, new_name: str, user_profile: UserProfile) -
).decode(), ).decode(),
) )
recipient_id = stream.recipient_id assert stream.recipient_id is not None
recipient_id: int = stream.recipient_id
messages = Message.objects.filter(recipient_id=recipient_id).only("id") messages = Message.objects.filter(recipient_id=recipient_id).only("id")
# Update the display recipient and stream, which are easy single # Update the display recipient and stream, which are easy single

View File

@ -1,4 +1,4 @@
from typing import Any, Dict, Optional from typing import Any, Dict, Mapping, Optional
from urllib.parse import urljoin from urllib.parse import urljoin
from django.conf import settings from django.conf import settings
@ -29,7 +29,7 @@ from zproject.backends import (
require_email_format_usernames, require_email_format_usernames,
) )
DEFAULT_PAGE_PARAMS = { DEFAULT_PAGE_PARAMS: Mapping[str, Any] = {
"development_environment": settings.DEVELOPMENT, "development_environment": settings.DEVELOPMENT,
"webpack_public_path": staticfiles_storage.url(settings.WEBPACK_BUNDLES), "webpack_public_path": staticfiles_storage.url(settings.WEBPACK_BUNDLES),
} }

View File

@ -326,9 +326,9 @@ def build_reactions(
# For the Unicode emoji codes, we use equivalent of # For the Unicode emoji codes, we use equivalent of
# function 'emoji_name_to_emoji_code' in 'zerver/lib/emoji' here # function 'emoji_name_to_emoji_code' in 'zerver/lib/emoji' here
for reaction in reactions: for reaction_dict in reactions:
emoji_name = reaction["name"] emoji_name = reaction_dict["name"]
user_id = reaction["user_id"] user_id = reaction_dict["user_id"]
# Check in realm emoji # Check in realm emoji
if emoji_name in realmemoji: if emoji_name in realmemoji:
emoji_code = realmemoji[emoji_name] emoji_code = realmemoji[emoji_name]

View File

@ -515,10 +515,10 @@ def public_stream_user_ids(stream: Stream) -> Set[int]:
guest_subscriptions = get_active_subscriptions_for_stream_id( guest_subscriptions = get_active_subscriptions_for_stream_id(
stream.id, include_deactivated_users=False stream.id, include_deactivated_users=False
).filter(user_profile__role=UserProfile.ROLE_GUEST) ).filter(user_profile__role=UserProfile.ROLE_GUEST)
guest_subscriptions = { guest_subscriptions_ids = {
sub["user_profile_id"] for sub in guest_subscriptions.values("user_profile_id") sub["user_profile_id"] for sub in guest_subscriptions.values("user_profile_id")
} }
return set(active_non_guest_user_ids(stream.realm_id)) | guest_subscriptions return set(active_non_guest_user_ids(stream.realm_id)) | guest_subscriptions_ids
def can_access_stream_user_ids(stream: Stream) -> Set[int]: def can_access_stream_user_ids(stream: Stream) -> Set[int]:

View File

@ -2703,6 +2703,7 @@ def get_huddle_recipient(user_profile_ids: Set[int]) -> Recipient:
# we hit another cache to get the recipient. We may want to # we hit another cache to get the recipient. We may want to
# unify our caching strategy here. # unify our caching strategy here.
huddle = get_huddle(list(user_profile_ids)) huddle = get_huddle(list(user_profile_ids))
assert huddle.recipient is not None
return huddle.recipient return huddle.recipient

View File

@ -6724,6 +6724,7 @@ class EmailValidatorTestCase(ZulipTestCase):
"fred+5555@zulip.com", "fred+5555@zulip.com",
get_realm_email_validator(realm), get_realm_email_validator(realm),
) )
assert error is not None
self.assertIn("containing + are not allowed", error) self.assertIn("containing + are not allowed", error)
cordelia_email = cordelia.delivery_email cordelia_email = cordelia.delivery_email

View File

@ -905,7 +905,9 @@ class RealmImportExportTest(ExportFile):
# test recipients # test recipients
def get_recipient_stream(r: Realm) -> Recipient: def get_recipient_stream(r: Realm) -> Recipient:
return Stream.objects.get(name="Verona", realm=r).recipient recipient = Stream.objects.get(name="Verona", realm=r).recipient
assert recipient is not None
return recipient
def get_recipient_user(r: Realm) -> Recipient: def get_recipient_user(r: Realm) -> Recipient:
return UserProfile.objects.get(full_name="Iago", realm=r).recipient return UserProfile.objects.get(full_name="Iago", realm=r).recipient

View File

@ -1544,6 +1544,7 @@ class StreamMessagesTest(ZulipTestCase):
stream = get_stream("Denmark", realm) stream = get_stream("Denmark", realm)
topic_name = "lunch" topic_name = "lunch"
recipient = stream.recipient recipient = stream.recipient
assert recipient is not None
sending_client = make_client(name="test suite") sending_client = make_client(name="test suite")
for i in range(num_extra_users): for i in range(num_extra_users):