From 431e01c74fd852dc9513c6af8b105edc877c0266 Mon Sep 17 00:00:00 2001 From: "Travis F. Collins" Date: Tue, 28 Nov 2023 16:39:36 -0700 Subject: [PATCH] Remove error check for find_channel to go back to v0 behavior Signed-off-by: Travis F. Collins --- bindings/python/iio.py | 1 - 1 file changed, 1 deletion(-) diff --git a/bindings/python/iio.py b/bindings/python/iio.py index 087721b36..f2bfe6395 100644 --- a/bindings/python/iio.py +++ b/bindings/python/iio.py @@ -478,7 +478,6 @@ class ChannelType(Enum): _d_find_channel = _lib.iio_device_find_channel _d_find_channel.restype = _ChannelPtr _d_find_channel.argtypes = (_DevicePtr, c_char_p, c_bool) -_d_find_channel.errcheck = _check_null _d_reg_write = _lib.iio_device_reg_write _d_reg_write.restype = c_int