mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix media.check() sig
This commit is contained in:
parent
f170763ef1
commit
068b10103c
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ create table meta (dirMod int, lastUsn int); insert into meta values (0, 0);
|
|||
# Rebuilding DB
|
||||
##########################################################################
|
||||
|
||||
def check(self, local: Optional[List[str]]) -> Tuple[List[str],List[str],List[str]]:
|
||||
def check(self, local: Optional[List[str]] = None) -> Tuple[List[str],List[str],List[str]]:
|
||||
"Return (missingFiles, unusedFiles)."
|
||||
mdir = self.dir()
|
||||
# gather all media references in NFC form
|
||||
|
|
Loading…
Reference in a new issue