Skip to content

Commit

Permalink
Merge pull request #94 from robho/antfs_array_list
Browse files Browse the repository at this point in the history
Fix antfs crash
  • Loading branch information
tuna-f1sh committed Nov 16, 2023
2 parents ed359fe + 1b02565 commit 6cac1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openant/fs/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def _get_command(self, timeout=15.0):
return c

def _send_command(self, c):
data = c.get()
data = c.get().tolist()
if len(data) == 8:
self._channel.send_acknowledged_data(data)
else:
Expand Down

0 comments on commit 6cac1ed

Please sign in to comment.