Skip to content

Commit

Permalink
Lint - Type consistency (mypy).
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajnus committed Oct 28, 2024
1 parent d9be1c3 commit 7cab44e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zulipterminal/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1024,7 +1024,7 @@ def next_unread_topic_from_message_id(
return None

def get_next_unread_pm(self) -> Optional[int]:
pms = list(self.unread_counts["unread_pms"].keys())
pms = list(self.unread_counts["unread_dms"].keys())
next_pm = False
for pm in pms:
if next_pm is True:
Expand Down

0 comments on commit 7cab44e

Please sign in to comment.