Skip to content

Commit e8cdeaf

Browse files
author
Jake Moss
committed
Unconditionally raise NotImplementedError
1 parent aa2901a commit e8cdeaf

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

src/flint/types/fmpz_mod_mpoly.pyx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1141,11 +1141,10 @@ cdef class fmpz_mod_mpoly(flint_mpoly):
11411141
return list(stride), list(shift)
11421142

11431143
cdef _compose_gens_(self, ctx, slong *mapping):
1144-
if FLINT_RELEASE < 30200:
1145-
raise NotImplementedError(
1146-
"this function is not supported below FLINT 3.2.0, "
1147-
f"current version is {FLINT_VERSION}"
1148-
)
1144+
raise NotImplementedError(
1145+
"this function is not supported below FLINT 3.2.0, "
1146+
f"current version is {FLINT_VERSION}"
1147+
)
11491148

11501149
cdef fmpz_mod_mpoly res = create_fmpz_mod_mpoly(ctx)
11511150
fmpz_mod_mpoly_compose_fmpz_mod_mpoly_gen(

0 commit comments

Comments
 (0)