forked from Mirror/pmbootstrap
pmb.types: Simplify CrossCompileType definition (MR 2464)
This is equivalent to the previous definition, but more concise.
This commit is contained in:
parent
6b55ce7b53
commit
c1527ba95d
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ from typing import Literal, TypedDict
|
|||
|
||||
from pmb.core.arch import Arch
|
||||
|
||||
CrossCompileType = Literal["native"] | Literal["crossdirect"] | None
|
||||
CrossCompileType = Literal["native", "crossdirect"] | None
|
||||
PathString = Path | str
|
||||
Env = dict[str, PathString]
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue