Skip to content

Commit 423d38b

Browse files
author
Christopher Doris
committed
fix unintentional piracy
1 parent f7c3b61 commit 423d38b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jlwrap/objectarray.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ PyObjectArray(x::AbstractArray{T,N}) where {T,N} = PyObjectArray{N}(x)
2525

2626
pyobjectarray_finalizer(x::PyObjectArray) = GC.enqueue_all(x.ptrs)
2727

28-
Base.IndexStyle(x) = Base.IndexStyle(x.ptrs)
28+
Base.IndexStyle(x::PyObjectArray) = Base.IndexStyle(x.ptrs)
2929

3030
Base.length(x::PyObjectArray) = length(x.ptrs)
3131

0 commit comments

Comments
 (0)