Skip to content

Commit

Permalink
requested changes, fix DummyPin::value return
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-land committed Apr 25, 2023
1 parent 5aa898f commit 2c7e95d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adafruit_rgb_display/rgb.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def switch_to_input(self, *, pull: Optional[digitalio.Pull] = None) -> None:
"""Dummy switch_to_input method"""

@property
def value(self) -> digitalio.DigitalInOut:
def value(self) -> bool:
"""Dummy value DigitalInOut property"""

@value.setter
Expand Down

0 comments on commit 2c7e95d

Please sign in to comment.