summaryrefslogtreecommitdiff
path: root/kvmd/apps
diff options
context:
space:
mode:
Diffstat (limited to 'kvmd/apps')
-rw-r--r--kvmd/apps/kvmd/ugpio.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kvmd/apps/kvmd/ugpio.py b/kvmd/apps/kvmd/ugpio.py
index 78d7f4f7..fa9309a0 100644
--- a/kvmd/apps/kvmd/ugpio.py
+++ b/kvmd/apps/kvmd/ugpio.py
@@ -77,7 +77,7 @@ class _GpioInput:
) -> None:
self.__channel = channel
- self.__pin: str = config.pin
+ self.__pin: str = str(config.pin)
self.__inverted: bool = config.inverted
self.__driver = driver
@@ -118,7 +118,7 @@ class _GpioOutput: # pylint: disable=too-many-instance-attributes
) -> None:
self.__channel = channel
- self.__pin: str = config.pin
+ self.__pin: str = str(config.pin)
self.__inverted: bool = config.inverted
self.__switch: bool = config.switch