mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
Fix mypy and black checks
This commit is contained in:
parent
57c48d7c85
commit
1b236acb3d
3 changed files with 7 additions and 6 deletions
|
@ -47,8 +47,8 @@ class AddonInstallationResult(NamedTuple):
|
|||
|
||||
class AddonManager:
|
||||
|
||||
ext = ".ankiaddon"
|
||||
_manifest_schema = {
|
||||
ext: str = ".ankiaddon"
|
||||
_manifest_schema: dict = {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"package": {"type": "string", "meta": False},
|
||||
|
|
|
@ -1027,6 +1027,7 @@ QTreeWidget {
|
|||
|
||||
def installAddon(self, path):
|
||||
from aqt.addons import installAddonPackages
|
||||
|
||||
installAddonPackages(self.addonManager, [path], external=True, parent=self)
|
||||
|
||||
# Cramming
|
||||
|
@ -1482,7 +1483,7 @@ will be lost. Continue?"""
|
|||
|
||||
def onAppMsg(self, buf: str) -> Optional[QTimer]:
|
||||
is_addon = buf.endswith(".ankiaddon")
|
||||
|
||||
|
||||
if self.state == "startup":
|
||||
# try again in a second
|
||||
return self.progress.timer(
|
||||
|
@ -1521,13 +1522,13 @@ Please ensure a profile is open and Anki is not busy, then try again."""
|
|||
self.raise_()
|
||||
if buf == "raise":
|
||||
return None
|
||||
|
||||
|
||||
# import / add-on installation
|
||||
if is_addon:
|
||||
self.installAddon(buf)
|
||||
else:
|
||||
self.handleImport(buf)
|
||||
|
||||
|
||||
return None
|
||||
|
||||
# GC
|
||||
|
|
|
@ -57,7 +57,7 @@ def showInfo(
|
|||
type="info",
|
||||
title="Anki",
|
||||
textFormat=None,
|
||||
customBtns=None
|
||||
customBtns=None,
|
||||
):
|
||||
"Show a small info window with an OK button."
|
||||
if parent is False:
|
||||
|
|
Loading…
Reference in a new issue