Skip to content

Commit 6d0b976

Browse files
committed
Small code review
1 parent 8913185 commit 6d0b976

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javaobj.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ def do_array(self, parent=None, ident=0):
929929
array.append(res)
930930
elif type_char == self.TYPE_BYTE:
931931
array = JavaByteArray(self.object_stream.read(size), classdesc)
932-
elif self.use_numpy_arrays and type_char != self.TYPE_BYTE:
932+
elif self.use_numpy_arrays:
933933
import numpy
934934
array = numpy.fromfile(
935935
self.object_stream,

0 commit comments

Comments
 (0)