| 927 | |
| 928 | |
| 929 | class AlgorithmEnum(StrEnum): |
| 930 | DirectHit = "DirectHit" |
| 931 | TemplateMatch = "TemplateMatch" |
| 932 | FeatureMatch = "FeatureMatch" |
| 933 | ColorMatch = "ColorMatch" |
| 934 | OCR = "OCR" |
| 935 | NeuralNetworkClassify = "NeuralNetworkClassify" |
| 936 | NeuralNetworkDetect = "NeuralNetworkDetect" |
| 937 | And = "And" |
| 938 | Or = "Or" |
| 939 | Custom = "Custom" |
| 940 | |
| 941 | |
| 942 | class ActionEnum(StrEnum): |
no outgoing calls
no test coverage detected