summaryrefslogtreecommitdiff
path: root/poezio/windows/info_wins.py
diff options
context:
space:
mode:
Diffstat (limited to 'poezio/windows/info_wins.py')
-rw-r--r--poezio/windows/info_wins.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/poezio/windows/info_wins.py b/poezio/windows/info_wins.py
index c3975c8c..cd775e33 100644
--- a/poezio/windows/info_wins.py
+++ b/poezio/windows/info_wins.py
@@ -3,6 +3,8 @@ Module defining all the "info wins", ie the bar which is on top of the
info buffer in normal tabs
"""
+from __future__ import annotations
+
from typing import Optional, Dict, TYPE_CHECKING, Any
import logging
@@ -272,9 +274,9 @@ class MucInfoWin(InfoWin):
def refresh(
self,
- room: 'MucTab',
- window: Optional['TextWin'] = None,
- user: Optional['User'] = None,
+ room: MucTab,
+ window: Optional[TextWin] = None,
+ user: Optional[User] = None,
information: Optional[Dict[str, Any]] = None
) -> None:
log.debug('Refresh: %s', self.__class__.__name__)