ordered_enum icon indicating copy to clipboard operation
ordered_enum copied to clipboard

Totally ordered enums for Python.

Results 1 ordered_enum issues
Sort by recently updated
recently updated
newest added

When using `mypy`, `>` and ` TestEnum.TWO: pass ``` ```shell Success: no issues found in 1 source file ``` But if I use `>=` or `= TestEnum.TWO: pass ``` ```shell...