Skip to content

Commit 9cff5a8

Browse files
committed
Fix duplicate import in docs.
1 parent be150ea commit 9cff5a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

repo_helper/files/docs.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
import css_parser # type: ignore
4040
import jinja2
4141
import ruamel.yaml as yaml
42-
from css_parser import css
4342
from domdf_python_tools.compat import importlib_resources
4443
from domdf_python_tools.paths import PathPlus
4544
from domdf_python_tools.typing import PathLike
@@ -375,7 +374,7 @@ def make_conf(repo_path: pathlib.Path, templates: jinja2.Environment) -> List[st
375374
return [file.relative_to(repo_path).as_posix()]
376375

377376

378-
class StyleSheet(css.CSSStyleSheet):
377+
class StyleSheet(css_parser.css.CSSStyleSheet):
379378
"""
380379
Represents a CSS style sheet.
381380
"""

0 commit comments

Comments
 (0)