All checks were successful
Publish documentation / publish (push) Successful in 51s
Check / Test on Python 3.10 (push) Successful in 1m1s
Check / Lint, format & type checks (push) Successful in 1m9s
Check / Test on Python 3.11 (push) Successful in 51s
Check / Test on Python 3.12 (push) Successful in 58s
Check / Test on Python 3.13 (push) Successful in 55s
5 lines
173 B
Python
5 lines
173 B
Python
from typing import List, Literal
|
|
|
|
Operator = Literal[">=", "<=", "<", ">", "!=", "=", "contains"]
|
|
|
|
operators: List[Operator] = [">=", "<=", "<", ">", "!=", "=", "contains"]
|