Skip to content

Commit 8b4c20d

Browse files
committed
Fix lint issue
1 parent dfa3264 commit 8b4c20d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/flint/types/arb.pyx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -501,8 +501,8 @@ cdef class arb(flint_scalar):
501501
cdef bint res
502502
cdef arb_struct sval[1]
503503
cdef arb_struct tval[1]
504-
cdef int stype, ttype
505-
stype = arb_set_any_ref(sval, s)
504+
cdef int _stype, ttype
505+
_stype = arb_set_any_ref(sval, s)
506506
ttype = arb_set_any_ref(tval, t)
507507
if ttype == FMPZ_UNKNOWN:
508508
return NotImplemented

0 commit comments

Comments
 (0)