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 42fe448 commit fe280c6Copy full SHA for fe280c6
circuitpython_mocks/digitalio/operations.py
@@ -9,14 +9,16 @@ def assert_state(self, value: bool | int):
9
10
11
class SetState(_State):
12
- """A class to represent setting the state of a Digital output pin."""
+ """A class to represent setting the state of a
13
+ :py:class:`~circuitpython_mocks.digitalio.DigitalInOut` pin."""
14
15
def __repr__(self) -> str:
16
return f"<SetState value='{self.state}'>"
17
18
19
class GetState(_State):
- """A class to represent getting the state of a Digital output pin."""
20
+ """A class to represent getting the state of a
21
22
23
24
return f"<GetState value='{self.state}'>"
0 commit comments