Skip to content
Snippets Groups Projects
Commit 10388f01 authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

cq: Typings: Use union operator for css_parser

parent c2044cea
No related branches found
No related tags found
No related merge requests found
from __future__ import annotations
from typing import Union
from pathlib import Path
from . import css as css
......@@ -13,4 +11,4 @@ from .stylesheets import MediaList
ser: CSSSerializer
def parseFile(filename: Union[str, Path], href: str | None = ..., media: Union[MediaList, list[str], str, None] = ..., title: str | None = ..., validate: bool | None = ...) -> None: ...
def parseFile(filename: str | Path, href: str | None = ..., media: MediaList | list[str] | str | None = ..., title: str | None = ..., validate: bool | None = ...) -> None: ...
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment