Skip to content
Snippets Groups Projects
Unverified Commit 3e0eba85 authored by Oliver Smith's avatar Oliver Smith
Browse files

pmb/types: manual ruff fixes (MR 2357)

Manual fixes for things that ruff didn't fix automatically.

From python3 docs:
> Union[X, Y] is equivalent to X | Y and means either X or Y.
parent 7b451b25
No related branches found
No related tags found
1 merge request!2357Bump minimum python3 version to 3.10
......@@ -3,12 +3,12 @@
from argparse import Namespace
from pathlib import Path
from typing import Literal, Optional, TypedDict, Union
from typing import Literal, TypedDict
from pmb.core.arch import Arch
CrossCompileType = Optional[Literal["native"] | Literal["crossdirect"]]
PathString = Union[Path, str]
CrossCompileType = Literal["native"] | Literal["crossdirect"] | None
PathString = Path | str
Env = dict[str, PathString]
# These types are not definitive / API, they exist to describe the current
......
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