Skip to content

Commit ebfeb43

Browse files
committed
Merge branch 'develop' into handle-invalid-time-value-set
2 parents af86e1e + 0ab4508 commit ebfeb43

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/explorepy/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def setup_usb_marker_port():
730730
def check_bin_compatibility(file_name):
731731
with open(file_name, "rb") as f:
732732
b = f.read(1).hex()
733-
if b != "62" and b != "63":
733+
if b not in {"62", "63", "64"}:
734734
raise ExplorePyDeprecationError()
735735

736736

0 commit comments

Comments
 (0)