Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 19, 2024
1 parent 5c89662 commit fb144fb
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions mdit_py_plugins/amsmath/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""An extension to capture amsmath latex environments."""

from __future__ import annotations

import re
Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/attrs/parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class <- '.' name
bareval <- (ASCII_ALPHANUM | ':' | '_' | '-')+
quotedval <- '"' ([^"] | '\"') '"'
"""

from __future__ import annotations

from enum import Enum
Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/container/index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process block-level custom containers."""

from __future__ import annotations

from math import floor
Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/deflist/index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process definition lists."""

from markdown_it import MarkdownIt
from markdown_it.rules_block import StateBlock

Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/field_list/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Field list plugin"""

from contextlib import contextmanager
from typing import Iterator, Optional, Tuple

Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/footnote/index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process footnotes"""

from __future__ import annotations

from typing import TYPE_CHECKING, List, Optional, Sequence
Expand Down
1 change: 1 addition & 0 deletions mdit_py_plugins/front_matter/index.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Process front matter."""

from markdown_it import MarkdownIt
from markdown_it.rules_block import StateBlock

Expand Down

0 comments on commit fb144fb

Please sign in to comment.