We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18e1ba0 commit 5f4ce5cCopy full SHA for 5f4ce5c
1 file changed
dict2css/__init__.py
@@ -286,7 +286,7 @@ def parse_style(style: css_parser.css.CSSStyleDeclaration) -> MutableMapping[str
286
for child in rule.cssRules:
287
styles_dict[f"@media {rule.media.mediaText}"][child.selectorText] = parse_style(child.style)
288
289
- elif isinstance(rule, (css_parser.css.CSSComment)):
+ elif isinstance(rule, (css_parser.css.CSSComment)): # pragma: no cover
290
# Ignore these classes
291
pass
292
0 commit comments