We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bcc26fa + cc72abb commit 4da8385Copy full SHA for 4da8385
can/interfaces/socketcand/socketcand.py
@@ -191,9 +191,7 @@ def _recv_internal(self, timeout):
191
self.__message_buffer.append(parsed_can_message)
192
buffer_view = buffer_view[end + 1 :]
193
194
- self.__receive_buffer = self.__receive_buffer[
195
- chars_processed_successfully + 1 :
196
- ]
+ self.__receive_buffer = self.__receive_buffer[chars_processed_successfully:]
197
can_message = (
198
None
199
if len(self.__message_buffer) == 0
doc/interfaces/neovi.rst
@@ -23,7 +23,7 @@ package.
23
- Install ``python-can`` with the ``neovi`` extras:
24
.. code-block:: bash
25
26
- pip install python-ics[neovi]
+ pip install python-can[neovi]
27
28
29
Configuration
0 commit comments