Skip to content

Commit 8f24c08

Browse files
committed
Fixing pylint issue
1 parent a1ecde6 commit 8f24c08

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

simpleio.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -241,9 +241,7 @@ def value(self) -> bool:
241241
return self.iopin.value
242242

243243
@value.setter
244-
def value(
245-
self, value: bool
246-
) -> None: # pylint: disable=no-self-use, unused-argument
244+
def value(self, value: bool) -> None: # pylint: disable=no-self-use
247245
raise AttributeError("Cannot set the value on a digital input.")
248246

249247

0 commit comments

Comments
 (0)