Skip to content

Commit

Permalink
Fix #141 get_sdk_version()
Browse files Browse the repository at this point in the history
  • Loading branch information
adujardin authored Feb 27, 2020
1 parent 5046d66 commit 5888985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyzed/sl.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -6306,8 +6306,8 @@ cdef class Camera:
@staticmethod
def get_sdk_version():
cls = Camera()
return cls.camera.getSDKVersion().get().decode()

return to_str(cls.camera.getSDKVersion()).decode()
##
# List all the connected devices with their associated information.
# This function lists all the cameras available and provides their serial number, models and other information.
Expand Down

0 comments on commit 5888985

Please sign in to comment.