File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2509,7 +2509,7 @@ class LinkProcessor(Extra):
25092509 order = (Stage .ITALIC_AND_BOLD ,), (Stage .ESCAPE_SPECIAL ,)
25102510 options : _LinkProcessorExtraOpts
25112511
2512- def __init__ (self , md : Markdown , options : Dict | None ):
2512+ def __init__ (self , md : Markdown , options : Optional [ dict ] ):
25132513 options = options or {}
25142514 super ().__init__ (md , options )
25152515
@@ -3247,7 +3247,7 @@ class MarkdownFileLinks(LinkProcessor):
32473247 order = (Stage .LINKS ,), (Stage .LINK_DEFS ,)
32483248 options : _MarkdownFileLinksExtraOpts
32493249
3250- def __init__ (self , md : Markdown , options : Dict | None ):
3250+ def __init__ (self , md : Markdown , options : Optional [ dict ] ):
32513251 # override LinkProcessor defaults
32523252 options = {'tags' : ['a' ], 'ref' : False , ** (options or {})}
32533253 super ().__init__ (md , options )
You can’t perform that action at this time.
0 commit comments