Skip to content

Commit

Permalink
Don't use StrEnum
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Moss committed Sep 15, 2024
1 parent e904b05 commit 3e1c60c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/flint/flint_base/flint_base.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ cdef class flint_poly(flint_elem):
raise NotImplementedError("Complex roots are not supported for this polynomial")


class Ordering(enum.StrEnum):
class Ordering(enum.Enum):
lex = "lex"
deglex = "deglex"
degrevlex = "degrevlex"
Expand Down

0 comments on commit 3e1c60c

Please sign in to comment.