8 lines
226 B
Python
8 lines
226 B
Python
|
|
from typing import Literal
|
||
|
|
|
||
|
|
error_status: Literal["error"] = "error"
|
||
|
|
fail_status: Literal["fail"] = "fail"
|
||
|
|
pass_status: Literal["pass"] = "pass"
|
||
|
|
not_run_status: Literal["not run"] = "not run"
|
||
|
|
hub: Literal["hub://"] = "hub://"
|