gpio_export return type (#29158)

return type
pull/29160/head
Maxime Desroches 2 years ago committed by GitHub
parent e53ab3a18a
commit 922e27fa5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      common/gpio.py

@ -25,7 +25,7 @@ def gpio_read(pin: int) -> Optional[bool]:
return val
def gpio_export(pin: int):
def gpio_export(pin: int) -> None:
try:
with open("/sys/class/gpio/export", 'w') as f:
f.write(str(pin))

Loading…
Cancel
Save