mirror of
https://github.com/ankitects/anki.git
synced 2025-09-25 09:16:38 -04:00
Fix import order
This commit is contained in:
parent
5ee08b1b36
commit
9a2348d902
1 changed files with 1 additions and 1 deletions
|
@ -5,6 +5,7 @@
|
||||||
from typing import Any, Dict, List, Optional, Tuple
|
from typing import Any, Dict, List, Optional, Tuple
|
||||||
|
|
||||||
import anki # pylint: disable=unused-import
|
import anki # pylint: disable=unused-import
|
||||||
|
from anki.types import NoteType
|
||||||
from anki.utils import (
|
from anki.utils import (
|
||||||
fieldChecksum,
|
fieldChecksum,
|
||||||
guid64,
|
guid64,
|
||||||
|
@ -14,7 +15,6 @@ from anki.utils import (
|
||||||
stripHTMLMedia,
|
stripHTMLMedia,
|
||||||
timestampID,
|
timestampID,
|
||||||
)
|
)
|
||||||
from anki.types import NoteType
|
|
||||||
|
|
||||||
|
|
||||||
class Note:
|
class Note:
|
||||||
|
|
Loading…
Reference in a new issue