Skip to content

Commit 74741a8

Browse files
committed
Mistletoe now has type hints.
1 parent cede631 commit 74741a8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

consolekit/commands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
from click.utils import make_str
6868
from domdf_python_tools.stringlist import DelimitedList
6969
from domdf_python_tools.words import Plural
70-
from mistletoe import block_token # type: ignore[import]
70+
from mistletoe import block_token
7171

7272
# this package
7373
from consolekit.terminal_colours import ColourTrilean, resolve_color_default, strip_ansi

consolekit/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@
5151
import deprecation_alias
5252
from domdf_python_tools.stringlist import StringList
5353
from domdf_python_tools.words import SANS_SERIF_ITALIC_LETTERS
54-
from mistletoe import block_token, span_token # type: ignore[import]
55-
from mistletoe.base_renderer import BaseRenderer # type: ignore[import]
54+
from mistletoe import block_token, span_token
55+
from mistletoe.base_renderer import BaseRenderer
5656
from typing_extensions import TypeGuard
5757

5858
# this package

0 commit comments

Comments
 (0)