mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
fix mypy warning
This commit is contained in:
parent
0f38514ad7
commit
fe59d11047
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ class ProgressManager:
|
|||
self._show_timer = QTimer(self.mw)
|
||||
self._show_timer.setSingleShot(True)
|
||||
self._show_timer.start(600)
|
||||
self._show_timer.timeout.connect(self._on_show_timer)
|
||||
self._show_timer.timeout.connect(self._on_show_timer) # type: ignore
|
||||
return self._win
|
||||
|
||||
def update(self, label=None, value=None, process=True, maybeShow=True):
|
||||
|
|
Loading…
Reference in a new issue