Fixed typo

This commit is contained in:
Fabio Manganiello 2019-12-20 18:56:00 +01:00
parent 1077dbcf71
commit f0751cb37d
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ class GpioPlugin(Plugin):
return getattr(gpio, mode_str) return getattr(gpio, mode_str)
@action @action
def write(self, pin: Union[int, str], int, value: Union[int, bool], def write(self, pin: Union[int, str], value: Union[int, bool],
name: Optional[str] = None, mode: Optional[str] = None) -> Dict[str, Any]: name: Optional[str] = None, mode: Optional[str] = None) -> Dict[str, Any]:
""" """
Write a byte value to a pin. Write a byte value to a pin.