mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Added type hints, renamed kwarg
This commit is contained in:
parent
ef1f58c8b6
commit
cc0572a385
2 changed files with 6 additions and 6 deletions
|
@ -379,9 +379,9 @@ class Collection:
|
|||
def cardCount(self) -> Any:
|
||||
return self.db.scalar("select count() from cards")
|
||||
|
||||
def card_count_from_did(self, did, recursive=False):
|
||||
dids = [did]
|
||||
if recursive:
|
||||
def card_count_from_did(self, did: int, count_subdecks: bool = False) -> Any:
|
||||
dids: List[int] = [did]
|
||||
if count_subdecks:
|
||||
dids += [r[1] for r in self.decks.children(did)]
|
||||
count = self.db.scalar(
|
||||
"select count() from cards where did in {0} or "
|
||||
|
|
|
@ -265,7 +265,7 @@ class DeckBrowser:
|
|||
node.collapsed = not node.collapsed
|
||||
self._renderPage(reuse=True)
|
||||
|
||||
def _dragDeckOnto(self, draggedDeckDid, ontoDeckDid):
|
||||
def _dragDeckOnto(self, draggedDeckDid: int, ontoDeckDid: int):
|
||||
try:
|
||||
self.mw.col.decks.renameForDragAndDrop(draggedDeckDid, ontoDeckDid)
|
||||
gui_hooks.sidebar_should_refresh_decks()
|
||||
|
@ -274,11 +274,11 @@ class DeckBrowser:
|
|||
|
||||
self.show()
|
||||
|
||||
def _delete(self, did):
|
||||
def _delete(self, did: int):
|
||||
self.mw.checkpoint(tr(TR.DECKS_DELETE_DECK))
|
||||
deck = self.mw.col.decks.get(did)
|
||||
if not deck["dyn"]:
|
||||
count = self.mw.col.card_count_from_did(did, recursive=True)
|
||||
count = self.mw.col.card_count_from_did(did, count_subdecks=True)
|
||||
if count:
|
||||
extra = tr(TR.DECKS_IT_HAS_CARD, count=count)
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue