Skip to content

Commit 5888985

Browse files
authored
Fix #141 get_sdk_version()
1 parent 5046d66 commit 5888985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyzed/sl.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6306,8 +6306,8 @@ cdef class Camera:
63066306
@staticmethod
63076307
def get_sdk_version():
63086308
cls = Camera()
6309-
return cls.camera.getSDKVersion().get().decode()
6310-
6309+
return to_str(cls.camera.getSDKVersion()).decode()
6310+
63116311
##
63126312
# List all the connected devices with their associated information.
63136313
# This function lists all the cameras available and provides their serial number, models and other information.

0 commit comments

Comments
 (0)