We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adf9457 commit 633ce7eCopy full SHA for 633ce7e
trio_gpio/libgpiod.py
@@ -300,7 +300,7 @@
300
try:
301
lib = ffi.dlopen("libgpiod.so.1")
302
except OSError:
303
- lib = ffi.dlopen("c") # workaround if we're only building docs
+ lib = ffi.dlopen("c") # workaround if we're only building docs
304
305
DIRECTION_INPUT = lib.GPIOD_LINE_REQUEST_DIRECTION_INPUT
306
DIRECTION_OUTPUT = lib.GPIOD_LINE_REQUEST_DIRECTION_OUTPUT
@@ -318,4 +318,3 @@
318
REQUEST_FLAG_ACTIVE_LOW = lib.GPIOD_LINE_REQUEST_FLAG_ACTIVE_LOW
319
EVENT_RISING_EDGE = lib.GPIOD_LINE_EVENT_RISING_EDGE
320
EVENT_FALLING_EDGE = lib.GPIOD_LINE_EVENT_FALLING_EDGE
321
-
0 commit comments