Skip to content

Commit

Permalink
test typing
Browse files Browse the repository at this point in the history
  • Loading branch information
jykr committed Jun 17, 2024
1 parent f680633 commit 9a109c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bean/mapping/CRISPResso2Align.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from cython.view cimport array as cvarray
import numpy as np
cimport numpy as np
cimport numpy as cnp

from libc.stdlib cimport free, malloc

Expand All @@ -16,9 +16,9 @@ cdef extern from "stdlib.h":
cdef extern from "Python.h":
ctypedef void PyObject

ctypedef np.int_t DTYPE_INT
ctypedef np.uint_t DTYPE_UINT
ctypedef np.int8_t DTYPE_BOOL
ctypedef cnp.int_t DTYPE_INT
ctypedef cnp.uint_t DTYPE_UINT
ctypedef cnp.int8_t DTYPE_BOOL

cdef size_t UP = 1, LEFT = 2, DIAG = 3, NONE = 4
cdef size_t MARRAY = 1, IARRAY = 2, JARRAY = 3
Expand Down

0 comments on commit 9a109c1

Please sign in to comment.