Skip to content

Commit dad6635

Browse files
author
Jason Mobarak
committed
python: remove accidental numpy import [INFRA-243]
1 parent 70a3036 commit dad6635

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

python/sbp/client/framer.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@
1818
import six
1919
import warnings
2020

21-
import numpy as np
22-
2321

2422
class Framer(six.Iterator):
2523
"""
@@ -58,7 +56,7 @@ def __init__(self,
5856
self._broken = False
5957
self._dispatch = dispatcher
6058
self._session = str(uuid.uuid4())
61-
self._buffer = np.zeros(16*1024, dtype=np.uint8)
59+
self._buffer = bytearray(16*1024)
6260
self._into_buffer = into_buffer
6361
self._skip_metadata = skip_metadata
6462
self._sender_id_filter_list = sender_id_filter_list

0 commit comments

Comments
 (0)