mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 13:57:14 +02:00
24 lines
769 B
Diff
24 lines
769 B
Diff
From fc74d69758ff288e26ff616c703b22ce5a02a68a Mon Sep 17 00:00:00 2001
|
|
From: sobolevn <mail@sobolevn.me>
|
|
Date: Tue, 20 Aug 2024 22:37:46 +0300
|
|
Subject: [PATCH] Use correct import path in `abbr.py`
|
|
|
|
This is the module: https://github.com/Python-Markdown/markdown/blob/master/markdown/blockparser.py
|
|
---
|
|
markdown/extensions/abbr.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/markdown/extensions/abbr.py b/markdown/extensions/abbr.py
|
|
index 693c3bba..6b079ae2 100644
|
|
--- a/markdown/extensions/abbr.py
|
|
+++ b/markdown/extensions/abbr.py
|
|
@@ -33,7 +33,7 @@
|
|
|
|
if TYPE_CHECKING: # pragma: no cover
|
|
from .. import Markdown
|
|
- from ..blockparsers import BlockParser
|
|
+ from ..blockparser import BlockParser
|
|
|
|
|
|
class AbbrExtension(Extension):
|