fix stdmodels type hint

This commit is contained in:
Damien Elmes 2020-01-15 15:30:40 +10:00
parent c3775e572d
commit eb6723a2ee

View File

@ -1,12 +1,13 @@
# Copyright: Ankitects Pty Ltd and contributors # Copyright: Ankitects Pty Ltd and contributors
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html # License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
from typing import Any, Callable, List, Tuple
from typing import Any, Callable, List, Tuple, Union
from anki.consts import MODEL_CLOZE from anki.consts import MODEL_CLOZE
from anki.lang import _ from anki.lang import _
from anki.types import NoteType from anki.types import NoteType
models: List[Tuple[Callable[[], str], Callable[[Any], NoteType]]] = [] models: List[Tuple[Union[Callable[[], str], str], Callable[[Any], NoteType]]] = []
# Basic # Basic
########################################################################## ##########################################################################