File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ def __getattr__(self, name):
173
173
return getattr (self .opening , name )
174
174
175
175
def attrGet (self , name : str ) -> None | str | int | float :
176
- """ Get the value of attribute `name`, or null if it does not exist."""
176
+ """Get the value of attribute `name`, or null if it does not exist."""
177
177
return self .opening .attrGet (name )
178
178
179
179
Original file line number Diff line number Diff line change @@ -276,7 +276,7 @@ def _attribute_token(self) -> Token:
276
276
277
277
@property
278
278
def tag (self ) -> str :
279
- """html tag name, e.g. \" p\" """
279
+ """html tag name, e.g. \" p\" """
280
280
return self ._attribute_token ().tag
281
281
282
282
@property
Original file line number Diff line number Diff line change @@ -89,8 +89,12 @@ strict_equality = true
89
89
implicit_reexport = false
90
90
91
91
[[tool .mypy .overrides ]]
92
- module = [" tests.test_plugins.*" ]
92
+ module = [" tests.test_plugins.*" , " markdown.* " ]
93
93
ignore_errors = true
94
94
95
+ [[tool .mypy .overrides ]]
96
+ module = [ " markdown.*" ]
97
+ ignore_missing_imports = true
98
+
95
99
[tool .pytest .ini_options ]
96
100
xfail_strict = true
You can’t perform that action at this time.
0 commit comments