diff --git a/lectures/numba.md b/lectures/numba.md index dd90e086..f67100b9 100644 --- a/lectures/numba.md +++ b/lectures/numba.md @@ -286,8 +286,7 @@ created in {doc}`this lecture `. To compile this class we use the `@jitclass` decorator: ```{code-cell} python3 -from numba import float64 -from numba.experimental import jitclass +from numba import float64, jitclass ``` Notice that we also imported something called `float64`.