Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
vshymanskyy committed Aug 5, 2024
1 parent f564d26 commit 9341402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/viper-tools/ws_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import re
import struct
import socket
from micropython import const
from collections import namedtuple

# Opcodes
Expand Down Expand Up @@ -184,7 +185,6 @@ def send(self, buf):
elif isinstance(buf, (bytes, bytearray)):
opcode = OP_BYTES
else:
print(repr(buf))
raise TypeError()

self.write_frame(opcode, buf)
Expand Down

0 comments on commit 9341402

Please sign in to comment.